Searched refs:SMTPChannel (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_smtpd.py | 45 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 …]
|
D | test_smtplib.py | 35 smtpd.SMTPChannel.handle_expt = handle_expt 749 class SimSMTPChannel(smtpd.SMTPChannel):
|
/external/python/cpython3/Doc/library/ |
D | smtpd.rst | 26 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/ |
D | smtpd.py | 105 class SMTPChannel(asynchat.async_chat): class 302 channel = SMTPChannel(self, conn, addr)
|
/external/python/cpython2/Lib/test/ |
D | test_smtplib.py | 345 class SimSMTPChannel(smtpd.SMTPChannel): 350 smtpd.SMTPChannel.__init__(self, *args, **kw)
|
/external/python/cpython3/Lib/ |
D | smtpd.py | 119 class SMTPChannel(asynchat.async_chat): class 630 channel_class = SMTPChannel
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.1rc1.rst | 428 smtpd's SMTPChannel now correctly raises a ValueError if both decode_data
|
D | 3.6.0a1.rst | 906 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/ |
D | 3.6.rst | 2218 * The *decode_data* argument for the :class:`smtpd.SMTPChannel` and
|
D | 3.5.rst | 1666 Both the :class:`~smtpd.SMTPServer` and :class:`~smtpd.SMTPChannel` classes now
|
D | 3.4.rst | 1372 The :class:`~smtpd.SMTPServer` and :class:`~smtpd.SMTPChannel` classes now
|
/external/python/cpython3/Misc/ |
D | HISTORY | 4906 - 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
|