lftpが「Certificate verification: Not trusted」などと言い出した

おもにHugoで構築したサイトコンテンツのデプロイに利用しているlftpが「Certificate verification: Not trusted」などと言い出した

根本的な解決ではないメモ

lftpの設定用のファイルlftp.dat

set ssl:verify-certificate no

を追加すると改善した

具体的には

$ nano lftp.dat
open -u userid,'p@ssword0' ftp.example.co.jp
set ftp:charset utf-8
set ssl:verify-certificate no
mirror -R -P 10 --loop --delete --verbose=3 --log=/home/user/hugo-site/lftp.log /home/user/hugo-site/public /
echo finished!
close
quit

のように書いておいた