web-dev-qa-db-ja.com

fetchmailおよびSSL証明書のエラー

Mac OS10.6.8でメールクライアントを構成する際に問題が発生しました。これらは私がしたステップでした:

# touch ~/.fetchmailrc

ファイルを編集してコンテンツを作成しました。

poll pop.gmail.com with proto POP3 and options no dns
user '[email protected]' there with password 'GMAIL_PASSWORD' is 'LOCAL_USERNAME'            
here and wants mda "/usr/bin/procmail -d %T"  options ssl keep sslcertck sslcertpath 
"/Users/LOCAL_USERNAME/.ssl/certs"  

それから私は実行しました:

# chmod 710 ~/.fetchmailrc

ここから証明書をコピーしました http://af-design.com/blog/2010/04/28/using-linux-fetchmail-with-gmail/ ディレクトリ~/.ssl/certs/と次のコマンドを発行しました。

# ls ~/.ssl/certs/

    equifax.pem    gmail.pem   imap.gmail.pem

# c_rehash ~/.ssl/certs/

これにより、~/.ssl/certsディレクトリに次のファイルが生成されました。

17974aab.0     578d5c04.0     b627f838.0     equifax.pem    gmail.pem      
imap.gmail.pem

苦情がなかったので正しいようです。最後に、コマンドを実行しました。

# fetchmail -v

エラーが発生しました:

fetchmail: 6.3.11 querying pop.gmail.com (protocol POP3) at Thu, 03 May 2012 16:41:02    +0200 (CEST): poll started
Trying to connect to 173.194.67.108/995...connected.
fetchmail: Server certificate verification error: unable to get local issuer certificate
fetchmail: Certificate/fingerprint verification was somehow skipped!
fetchmail: SSL connection failed.
fetchmail: socket error while fetching from [email protected]@pop.gmail.com
fetchmail: 6.3.11 querying pop.gmail.com (protocol POP3) at Thu, 03 May 2012 16:41:02 +0200 (CEST): poll completed
fetchmail: Query status=2 (SOCKET)
fetchmail: normal termination, status 2

ユーザー名の変更など、いくつかのフォーラムで提案されているようにしようとしましたが、役に立ちませんでした。

どんな助けでも大歓迎です。

2
Luigi Tiburzi

this によると、~/.ssl/certsに移動して:

wget -O Equifax_Secure_Certificate_Authority.pem  https://www.geotrust.com/resources/root_certificates/certificates/Equifax_Secure_Certificate_Authority.cer

次に、次の行を実行する必要があります。

  c_rehash ~/.ssl/certs

その場合、fechmail -vサーバー証明書検証エラーを与えるべきではありません。

2
rzjfr