Home
last modified time | relevance | path

Searched refs:IMAP4 (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Doc/library/
Dimaplib.rst1 :mod:`imaplib` --- IMAP4 protocol client
5 :synopsis: IMAP4 protocol client (requires sockets).
15 pair: IMAP4; protocol
23 This module defines three classes, :class:`IMAP4`, :class:`IMAP4_SSL` and
24 :class:`IMAP4_stream`, which encapsulate a connection to an IMAP4 server and
26 :rfc:`2060`. It is backward compatible with IMAP4 (:rfc:`1730`) servers, but
27 note that the ``STATUS`` command is not supported in IMAP4.
29 Three classes are provided by the :mod:`imaplib` module, :class:`IMAP4` is the
33 .. class:: IMAP4([host[, port]])
35 This class implements the actual IMAP4 protocol. The connection is created and
[all …]
Dpoplib.rst25 :class:`imaplib.IMAP4` class, as IMAP servers tend to be better implemented.
/external/python/cpython2/Lib/test/
Dtest_imaplib.py164 self.assertRaises(imaplib.IMAP4.abort,
175 self.assertRaises(imaplib.IMAP4.error,
181 imap_class = imaplib.IMAP4
199 imap_class = imaplib.IMAP4
/external/python/cpython2/Lib/
Dimaplib.py109 class IMAP4: class
1148 class IMAP4_SSL(IMAP4):
1166 IMAP4.__init__(self, host, port)
1227 class IMAP4_stream(IMAP4):
1241 IMAP4.__init__(self)
1499 M = IMAP4(host)
/external/python/cpython2/Misc/
Dcheatsheet1905 imaplib IMAP4 client.Based on RFC 2060.
DHISTORY3462 - imaplib.IMAP4.thread was added.
11032 - imaplib.py: fix problem with some versions of IMAP4 servers that
12074 interface for the IMAP4 protocol