Home
last modified time | relevance | path

Searched refs:SMTPChannel (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_smtpd.py45 channel = smtpd.SMTPChannel(server, conn, addr, decode_data=True)
94 channel = smtpd.SMTPChannel(server, conn, addr, decode_data=True)
110 channel = smtpd.SMTPChannel(server, conn, addr)
127 channel = smtpd.SMTPChannel(server, conn, addr, enable_SMTPUTF8=True)
144 channel = smtpd.SMTPChannel(server, conn, addr, enable_SMTPUTF8=True)
203 channel = smtpd.SMTPChannel(server, conn, addr)
212 channel = smtpd.SMTPChannel(server, conn, addr)
240 channel = smtpd.SMTPChannel(server, conn, addr, decode_data=True)
256 channel = smtpd.SMTPChannel(server, conn, addr)
277 channel = smtpd.SMTPChannel(server, conn, addr, enable_SMTPUTF8=True)
[all …]
Dtest_smtplib.py35 smtpd.SMTPChannel.handle_expt = handle_expt
749 class SimSMTPChannel(smtpd.SMTPChannel):
/external/python/cpython3/Doc/library/
Dsmtpd.rst26 Additionally the SMTPChannel may be extended to implement very specific
106 Override this in subclasses to use a custom :class:`SMTPChannel` for
163 SMTPChannel Objects
166 .. class:: SMTPChannel(server, conn, addr, data_size_limit=33554432,\
169 Create a new :class:`SMTPChannel` object which manages the communication
190 To use a custom SMTPChannel implementation you need to override the
199 The :class:`SMTPChannel` has the following instance variables:
255 The :class:`SMTPChannel` operates by invoking methods named ``smtp_<command>``
257 :class:`SMTPChannel` class are methods for handling the following commands
/external/python/cpython2/Lib/
Dsmtpd.py105 class SMTPChannel(asynchat.async_chat): class
302 channel = SMTPChannel(self, conn, addr)
/external/python/cpython2/Lib/test/
Dtest_smtplib.py345 class SimSMTPChannel(smtpd.SMTPChannel):
350 smtpd.SMTPChannel.__init__(self, *args, **kw)
/external/python/cpython3/Lib/
Dsmtpd.py119 class SMTPChannel(asynchat.async_chat): class
630 channel_class = SMTPChannel
/external/python/cpython3/Misc/NEWS.d/
D3.5.1rc1.rst428 smtpd's SMTPChannel now correctly raises a ValueError if both decode_data
D3.6.0a1.rst906 The default value of the decode_data parameter for smtpd.SMTPChannel and
2715 smtpd's SMTPChannel now correctly raises a ValueError if both decode_data
/external/python/cpython3/Doc/whatsnew/
D3.6.rst2218 * The *decode_data* argument for the :class:`smtpd.SMTPChannel` and
D3.5.rst1666 Both the :class:`~smtpd.SMTPServer` and :class:`~smtpd.SMTPChannel` classes now
D3.4.rst1372 The :class:`~smtpd.SMTPServer` and :class:`~smtpd.SMTPChannel` classes now
/external/python/cpython3/Misc/
DHISTORY4906 - Issue #11959: SMTPServer and SMTPChannel now take an optional map, use of
8966 and private attributes of 'smtpd.SMTPChannel'.
12562 - Issue #4184: Private attributes on smtpd.SMTPChannel made public and deprecate