जीमेल के लिए ऑफलाइनमैप कॉन्फ़िगर करना: एसएसएल त्रुटि


18

मैं offlineimapअपना जीमेल डाउनलोड करने के लिए कॉन्फ़िगर करने का प्रयास कर रहा हूं लेकिन मुझे त्रुटि मिल रही है:

OfflineIMAP 6.5.7
  Licensed under the GNU GPL v2 or any later version (with an OpenSSL exception)
Account sync Gmail:
 *** Processing account Gmail
 Establishing connection to imap.gmail.com:993
 ERROR: No CA certificates and no server fingerprints configured.  You must configure at least something, otherwise having SSL helps nothing.
 *** Finished account 'Gmail' in 0:00
ERROR: Exceptions occurred during the run!
ERROR: No CA certificates and no server fingerprints configured.  You must configure at least something, otherwise having SSL helps nothing.

Traceback:
  File "/usr/lib/python2.7/site-packages/offlineimap/accounts.py", line 263, in syncrunner
    self.__sync()
  File "/usr/lib/python2.7/site-packages/offlineimap/accounts.py", line 326, in __sync
    remoterepos.getfolders()
  File "/usr/lib/python2.7/site-packages/offlineimap/repository/IMAP.py", line 351, in getfolders
    imapobj = self.imapserver.acquireconnection()
  File "/usr/lib/python2.7/site-packages/offlineimap/imapserver.py", line 439, in acquireconnection
    use_socket=self.proxied_socket,
  File "/usr/lib/python2.7/site-packages/offlineimap/imaplibutil.py", line 186, in __init__
    super(WrappedIMAP4_SSL, self).__init__(*args, **kwargs)
  File "/usr/lib/python2.7/site-packages/offlineimap/imaplib2.py", line 2063, in __init__
    IMAP4.__init__(self, host, port, debug, debug_file, identifier, timeout, debug_buf_lvl)
  File "/usr/lib/python2.7/site-packages/offlineimap/imaplib2.py", line 344, in __init__
    self.open(host, port)
  File "/usr/lib/python2.7/site-packages/offlineimap/imaplibutil.py", line 193, in open
    "having SSL helps nothing.", OfflineImapError.ERROR.REPO)

मेरा .offlineimaprcहै:

[general]
accounts = Gmail
maxsyncaccounts = 3
sslcacertfile = /etc/ssl/certs/ca-certificates.crt

[Account Gmail]
localrepository = Local
remoterepository = Remote

[Repository Local]
type = Maildir
localfolders = ~/mail

[Repository Remote]
type = IMAP
remotehost = imap.gmail.com
remoteuser = wdrnls@gmail.com
remotepass = Secret
ssl = yes
maxconnections = 3
realdelete = no

मैं निर्दिष्ट कर रहा हूं कि मेरे सेर्ट कहां हैं। यह अभी भी क्यों गलत है?

जवाबों:


32

प्रविष्टि डालें:

sslcacertfile = /etc/ssl/certs/ca-certificate.crt

अनुभाग में:

[रिपॉजिटरी रिमोट]


मुझे CentOS 6 के लिए /etc/ssl/certs/ca-bundle.crt की जरूरत थी।
Hut8

3
OSX उपयोग के लिए: sslcacertfile = /usr/local/etc/openssl/cert.pem ( rudolfochrist.github.io/blog/2015/03/21/…… पर पाया गया )
AlexG

2

FreeBSD के लिए पोर्ट सुरक्षा / ca_root_nss स्थापित करें

और फिर जोड़ें

sslcacertfile = /usr/local/share/certs/ca-root-nss.crt

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.