diff options
author | Christian Heimes <christian@cheimes.de> | 2013-12-02 19:01:29 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-12-02 19:01:29 (GMT) |
commit | 48aae57996c89a5601534320fdd078da978fb7bb (patch) | |
tree | 77c04c61c848c35eceeaa0962e5d185fbc8a8833 /Doc/library/imaplib.rst | |
parent | 0c924b83eefead8c111f66452b0681a5c7485a5c (diff) | |
download | cpython-48aae57996c89a5601534320fdd078da978fb7bb.zip cpython-48aae57996c89a5601534320fdd078da978fb7bb.tar.gz cpython-48aae57996c89a5601534320fdd078da978fb7bb.tar.bz2 |
Issue #19782: imaplib now supports SSLContext.check_hostname and server name
indication for TLS/SSL connections.
Diffstat (limited to 'Doc/library/imaplib.rst')
-rw-r--r-- | Doc/library/imaplib.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst index 01236fb..be2f599 100644 --- a/Doc/library/imaplib.rst +++ b/Doc/library/imaplib.rst @@ -80,6 +80,10 @@ There's also a subclass for secure connections: .. versionchanged:: 3.3 *ssl_context* parameter added. + .. versionchanged:: 3.4 + The class now supports hostname check with + :attr:`SSLContext.check_hostname` and *Server Name Indicator* (see + :data:`~ssl.HAS_SNI`). The second subclass allows for connections created by a child process: @@ -437,6 +441,10 @@ An :class:`IMAP4` instance has the following methods: .. versionadded:: 3.2 + .. versionchanged:: 3.4 + The method now supports hostname check with + :attr:`SSLContext.check_hostname` and *Server Name Indicator* (see + :data:`~ssl.HAS_SNI`). .. method:: IMAP4.status(mailbox, names) |