fetchmail 및 SSL 인증서 오류

fetchmail 및 SSL 인증서 오류

Mac OS 10.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

사용자 이름 변경 등 일부 포럼에서 제안한 작업을 수행해 보았지만 도움이 되지 않았습니다.

도움을 주시면 감사하겠습니다.

답변1

~에 따르면이것당신은 당신의 다음으로 가야합니다 ~/.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안되는거야서버 인증서 확인 오류가 발생합니다.

관련 정보