Home
last modified time | relevance | path

Searched refs:LMTP (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Doc/library/
Dsmtplib.rst64 .. class:: LMTP([host[, port[, local_hostname]]])
66 The LMTP protocol, which is very similar to ESMTP, is heavily based on the
67 standard SMTP client. It's common to use Unix sockets for LMTP, so our
74 Unix socket, LMTP generally don't support or require any authentication, but
/external/python/cpython3/Doc/library/
Dsmtplib.rst118 .. class:: LMTP(host='', port=LMTP_PORT, local_hostname=None, \
121 The LMTP protocol, which is very similar to ESMTP, is heavily based on the
122 standard SMTP client. It's common to use Unix sockets for LMTP, so our
129 Unix socket, LMTP generally don't support or require any authentication, but
/external/python/cpython2/Lib/
Dsmtplib.py819 class LMTP(SMTP): class
/external/python/cpython3/Lib/
Dsmtplib.py1052 class LMTP(SMTP): class
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a3.rst394 :class:`~smtplib.LMTP` constructor now has an optional *timeout* parameter.
/external/python/cpython3/Lib/test/
Dtest_smtplib.py166 client = smtplib.LMTP
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2352 An implementation of the LMTP protocol (:rfc:`2033`) was also added
2353 to the module. LMTP is used in place of SMTP when transferring
2354 e-mail between agents that don't manage a mail queue. (LMTP
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2356 An implementation of the LMTP protocol (:rfc:`2033`) was also added
2357 to the module. LMTP is used in place of SMTP when transferring
2358 e-mail between agents that don't manage a mail queue. (LMTP
D3.9.rst643 :class:`~smtplib.LMTP` constructor now has an optional *timeout* parameter.
D3.3.rst1860 :class:`~smtplib.LMTP` classes now accept a ``source_address`` keyword argument
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst2902 Implement smtplib.LMTP.