Searched refs:POP3 (Results 1 – 25 of 83) sorted by relevance
1234
/external/python/cpython2/Doc/library/ |
D | poplib.rst | 1 :mod:`poplib` --- POP3 protocol client 5 :synopsis: POP3 protocol client (requires sockets). 9 .. index:: pair: POP3; protocol 15 This module defines a class, :class:`POP3`, which encapsulates a connection to a 16 POP3 server and implements the protocol as defined in :rfc:`1725`. The 17 :class:`POP3` class supports both the minimal and optional command sets. 19 support for connecting to POP3 servers that use SSL as an underlying protocol 22 Note that POP3, though widely supported, is obsolescent. The implementation 23 quality of POP3 servers varies widely, and too many are quite poor. If your 30 .. class:: POP3(host[, port[, timeout]]) [all …]
|
/external/python/cpython3/Doc/library/ |
D | poplib.rst | 1 :mod:`poplib` --- POP3 protocol client 5 :synopsis: POP3 protocol client (requires sockets). 12 .. index:: pair: POP3; protocol 16 This module defines a class, :class:`POP3`, which encapsulates a connection to a 17 POP3 server and implements the protocol as defined in :rfc:`1939`. The 18 :class:`POP3` class supports both the minimal and optional command sets from 19 :rfc:`1939`. The :class:`POP3` class also supports the ``STLS`` command introduced 23 support for connecting to POP3 servers that use SSL as an underlying protocol 26 Note that POP3, though widely supported, is obsolescent. The implementation 27 quality of POP3 servers varies widely, and too many are quite poor. If your [all …]
|
/external/curl/tests/data/ |
D | test864 | 4 POP3 14 REPLY welcome +OK curl POP3 server ready to serve <1972.987654321\@curl> 37 POP3 APOP authentication
|
D | test861 | 4 POP3 19 # POP3 server 34 POP3 UIDL (CUSTOMREQUEST)
|
D | test853 | 4 POP3 19 # POP3 server 34 POP3 LIST messages from *SLOW* server
|
D | test875 | 4 POP3 15 POP3 with URL-encoded CR LF in the URL
|
D | test858 | 4 POP3 23 POP3 DELE message (CUSTOMREQUEST)
|
D | test859 | 4 POP3 23 POP3 STAT (CUSTOMREQUEST)
|
D | test863 | 4 POP3 23 POP3 RSET (CUSTOMREQUEST)
|
D | test860 | 4 POP3 23 POP3 NOOP (CUSTOMREQUEST)
|
D | test891 | 4 POP3 27 POP3 with short authentication response
|
D | test850 | 4 POP3 31 POP3 RETR message
|
D | test855 | 4 POP3 26 POP3 RETR invalid message
|
D | test852 | 4 POP3 26 POP3 LIST invalid message
|
D | test854 | 4 POP3 27 POP3 LIST no messages available
|
D | test851 | 4 POP3 26 POP3 LIST one message
|
D | test862 | 4 POP3 32 POP3 retrieve message header (CUSTOMREQUEST)
|
D | test865 | 4 POP3 39 POP3 plain authentication
|
D | test883 | 4 POP3 39 POP3 external authentication
|
D | test884 | 4 POP3 39 POP3 external authentication without credentials
|
D | test886 | 4 POP3 39 POP3 external authentication with initial response without credentials
|
D | test866 | 4 POP3 39 POP3 login authentication
|
D | test885 | 4 POP3 39 POP3 external authentication with initial response
|
/external/python/cpython3/Lib/ |
D | poplib.py | 50 class POP3: class 414 class POP3_SSL(POP3): 447 POP3.__init__(self, host, port, timeout) 450 sock = POP3._create_socket(self, timeout) 466 a = POP3(sys.argv[1])
|
/external/curl/docs/cmdline-opts/ |
D | login-options.d | 3 Protocols: IMAP POP3 SMTP 10 be used during authentication. At present only IMAP, POP3 and SMTP support
|
1234