Home
last modified time | relevance | path

Searched refs:SMTPServer (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Doc/library/
Dsmtpd.rst32 SMTPServer Objects
36 .. class:: SMTPServer(localaddr, remoteaddr, data_size_limit=33554432,\
39 Create a new :class:`SMTPServer` object, which binds to local address
129 Create a new debugging server. Arguments are as per :class:`SMTPServer`.
139 Create a new pure proxy server. Arguments are as per :class:`SMTPServer`.
156 Create a new pure proxy server. Arguments are as per :class:`SMTPServer`.
190 :attr:`SMTPServer.channel_class` of your :class:`SMTPServer`.
202 Holds the :class:`SMTPServer` that spawned this channel.
/third_party/python/Lib/test/
Dtest_smtpd.py16 class DummyServer(smtpd.SMTPServer):
18 smtpd.SMTPServer.__init__(self, *args, **kwargs)
47 server = smtpd.SMTPServer((socket_helper.HOST, 0), ('b', 0),
65 smtpd.SMTPServer,
179 server = smtpd.SMTPServer((socket_helper.HOSTv6, 0), (socket_helper.HOSTv4, 0))
183 server = smtpd.SMTPServer((socket_helper.HOSTv4, 0), (socket_helper.HOSTv6, 0))
Dtest_smtplib.py1003 class SimSMTPServer(smtpd.SMTPServer):
1010 smtpd.SMTPServer.__init__(self, *args, **kw)
1360 smtpd.SMTPServer.__init__(self, *args, **kw)
Dtest_logging.py809 class TestSMTPServer(smtpd.SMTPServer):
831 smtpd.SMTPServer.__init__(self, addr, None, map=sockmap,
/third_party/python/Lib/
Dsmtpd.py639 class SMTPServer(asyncore.dispatcher): class
716 class DebuggingServer(SMTPServer):
746 class PureProxy(SMTPServer):
/third_party/python/Doc/whatsnew/
D3.5.rst1666 Both the :class:`~smtpd.SMTPServer` and :class:`~smtpd.SMTPChannel` classes now
1670 :meth:`SMTPServer.process_message() <smtpd.SMTPServer.process_message>`
1677 The :class:`~smtpd.SMTPServer` class now advertises the ``8BITMIME`` extension
1680 :meth:`SMTPServer.process_message() <smtpd.SMTPServer.process_message>`
1684 The :class:`~smtpd.SMTPServer` class now also supports the ``SMTPUTF8``
1687 :meth:`SMTPServer.process_message() <smtpd.SMTPServer.process_message>`
1693 addresses in the :class:`~smtpd.SMTPServer` constructor, and have it
2300 new *decode_data* keyword to :class:`~smtpd.SMTPServer`. The default value is
D3.6.rst2219 :class:`smtpd.SMTPServer` constructors is now ``False`` by default.
2221 :meth:`~smtpd.SMTPServer.process_message` is now a bytes object by
D3.4.rst1372 The :class:`~smtpd.SMTPServer` and :class:`~smtpd.SMTPChannel` classes now
/third_party/python/Misc/NEWS.d/
D3.6.0a1.rst907 smtpd.SMTPServer constructors is changed to False.
/third_party/python/Misc/
DHISTORY4906 - Issue #11959: SMTPServer and SMTPChannel now take an optional map, use of
13279 - Issue #6589: cleanup asyncore.socket_map in case smtpd.SMTPServer constructor