Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39971

Re: IMAP4_SSL and OpenSSL compatibility

Date 2013-02-26 17:57 +0100
From "W. Martin Borgert" <debacle@debian.org>
Subject Re: IMAP4_SSL and OpenSSL compatibility
References <20130225224327.GA10266@fama.tangosoft.com> <loom.20130226T130328-127@post.gmane.org>
Newsgroups comp.lang.python
Message-ID <mailman.2553.1361897864.2939.python-list@python.org> (permalink)

Show all headers | View raw


Quoting "Antoine Pitrou" <solipsis@pitrou.net>:
> W. Martin Borgert <debacle <at> debian.org> writes:
>> When I add an ssl_version argument to the call to
>> ssl.wrap_socket() in imaplib.IMAP4_SSL.open(), I can connect to
>> the Exchange server without problems:
>>
>> self.sslobj = ssl.wrap_socket(self.sock, self.keyfile, self.certfile,
>>                               ssl_version = ssl.PROTOCOL_SSLv3)
>>
>> Would it make sense, to make this change in the Python standard
>> library?
>
> There is already the ssl_context option for that:
> http://docs.python.org/3.3/library/imaplib.html#imaplib.IMAP4_SSL

Many thanks! Two more questions:

  1. Is there any plan to backport this Python >= 3.3 feature to
     Python 2?

  2. Would the following lines be correct for Python 3.3?

     >>> import imaplib
     >>> IMAP4_SSL("192.168.1.1.", ssl_context =  
SSLContext(ssl.PROTOCOL_SSLv3))

Cheers

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: IMAP4_SSL and OpenSSL compatibility "W. Martin Borgert" <debacle@debian.org> - 2013-02-26 17:57 +0100
  Re: IMAP4_SSL and OpenSSL compatibility Matej Cepl <mcepl@redhat.com> - 2013-03-01 23:46 +0100

csiph-web