Несколько дней go я установил новую ОС Rasbian. Я скопировал .fetchmailr c в эту новую установку raspbian.
pi@raspberrypi:~ $ cat .fetchmailrc
set postmaster pi
set bouncemail
poll host.host.host proto POP3 port 995 user "email" there with password "password" keep options ssl sslfingerprint "SS:LF:IN:GE:RP:RI:NT"
mda "/usr/bin/procmail -f-"
Это не сработало, потому что версия raspbian отвечала проблемами SSL; поэтому я скачал новый openssl и fetchmail из исходного кода и создал его с нуля. Когда я выполняю fetchmail, я получаю следующую ошибку:
pi@raspberrypi:~ $ /usr/local/fetchmail/bin/fetchmail -v
fetchmail: 6.4.1 querying host.host.host (protocol POP3) at Wed Mar 4 10:22:20 2020: poll started
Trying to connect to ip.ip.ip.ip/995...connected.
fetchmail: Server certificate verification error: unable to get local issuer certificate
fetchmail: Broken certification chain at: /C=GB/ST=Greater Manchester/L=Salford/O=Comodo CA Limited/CN=AAA Certificate Services
fetchmail: This could mean that the server did not provide the intermediate CA's certificate(s), which is nothing fetchmail could do anything about. For details, please see the README.SSL-SERVER document that ships with fetchmail.
fetchmail: This could mean that the root CA's signing certificate is not in the trusted CA certificate location, or that c_rehash needs to be run on the certificate directory. For details, please see the documentation of --sslcertpath and --sslcertfile in the manual page.
fetchmail: OpenSSL reported: error:14000086:SSL routines::certificate verify failed
fetchmail: host.host.host: SSL connection failed.
fetchmail: socket error while fetching from email@host.host.host
fetchmail: 6.4.1 querying host.host.host (protocol POP3) at Wed Mar 4 10:22:20 2020: poll completed
fetchmail: Query status=2 (SOCKET)
fetchmail: normal termination, status 2
Я потерян; У кого-нибудь есть советы?