summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2021-06-09 23:12:41 (GMT)
committerGitHub <noreply@github.com>2021-06-09 23:12:41 (GMT)
commit309ab616020f8504ced8ca64f7d7abc2df25a37f (patch)
tree52af807748cdacc93ee2fafdbb9404abca4ae64d /Doc
parent457ce60fc70f1c9290023f46fb82b6a490dff32e (diff)
downloadcpython-309ab616020f8504ced8ca64f7d7abc2df25a37f.zip
cpython-309ab616020f8504ced8ca64f7d7abc2df25a37f.tar.gz
cpython-309ab616020f8504ced8ca64f7d7abc2df25a37f.tar.bz2
bpo-35800: Remove smtpd.MailmanProxy since 3.11 (GH-26617)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/smtpd.rst18
-rw-r--r--Doc/whatsnew/3.11.rst7
2 files changed, 7 insertions, 18 deletions
diff --git a/Doc/library/smtpd.rst b/Doc/library/smtpd.rst
index d84e74a..ae66e7e 100644
--- a/Doc/library/smtpd.rst
+++ b/Doc/library/smtpd.rst
@@ -142,24 +142,6 @@ PureProxy Objects
chance to make you into an open relay, so please be careful.
-MailmanProxy Objects
---------------------
-
-
-.. class:: MailmanProxy(localaddr, remoteaddr)
-
- .. deprecated-removed:: 3.9 3.11
-
- :class:`MailmanProxy` is deprecated, it depends on a ``Mailman``
- module which no longer exists and therefore is already broken.
-
-
- Create a new pure proxy server. Arguments are as per :class:`SMTPServer`.
- Everything will be relayed to *remoteaddr*, unless local mailman configurations
- knows about an address, in which case it will be handled via mailman. Note that
- running this has a good chance to make you into an open relay, so please be
- careful.
-
SMTPChannel Objects
-------------------
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 0001127..dcab367 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -92,6 +92,13 @@ fractions
Support :PEP:`515`-style initialization of :class:`~fractions.Fraction` from
string. (Contributed by Sergey B Kirpichev in :issue:`44258`.)
+
+Removed
+=======
+* :class:`smtpd.MailmanProxy` is now removed as it is unusable without
+ an external module, ``mailman``. (Contributed by Dong-hee Na in :issue:`35800`.)
+
+
Optimizations
=============