SSLError "UKNOWN_PROTOCOL" imaplib Python

853 Views Asked by At

I am trying to connect to an email server with my own credentials in Python. The script works great until the exception "SSLError" shows up. Sometimes it occurs as soon as starting up the script or after running the script for a few hours. I created an exception for it, but that does not work.As long as the SSLError exception occurs, the script will not connect.. Someone please help as I am not a professional:

IMAP4_SSL_PORT = 993

while True:

    now = datetime.now()
    msrver = imaplib.IMAP4_SSL(host = 'myemailserver.com',port = IMAP4_SSL_PORT)

    unm = 'usernamehere'
    pwd = 'passwordhere'
    msrver.login(unm,pwd)

Here is the traceback:

Traceback (most recent call last):
File "C:\Users\ereyes\Desktop\TestScripts\Database Automation.py", line    16, in <module>
msrver = imaplib.IMAP4_SSL(host = 'myemailserver.com',port =   IMAP4_SSL_PORT)
File "C:\Python27\lib\imaplib.py", line 1166, in __init__
IMAP4.__init__(self, host, port)
File "C:\Python27\lib\imaplib.py", line 173, in __init__
self.open(host, port)
File "C:\Python27\lib\imaplib.py", line 1178, in open
self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile)
File "C:\Python27\lib\ssl.py", line 911, in wrap_socket
ciphers=ciphers)
File "C:\Python27\lib\ssl.py", line 579, in __init__
self.do_handshake()
File "C:\Python27\lib\ssl.py", line 808, in do_handshake
self._sslobj.do_handshake()
SSLError: [SSL: UNKNOWN_PROTOCOL] unknown protocol (_ssl.c:590)

Thanks in advance!

0

There are 0 best solutions below