summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-03-20 20:16:29 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-03-20 20:16:29 (GMT)
commit669b755c92aac40cc3d14e94b9e6dbc1e48d3ef0 (patch)
tree01c6cfceb003a9399627d491a003f58c4d03f95b /Misc
parentb4dcb1051441a63ec13aa263484b20d64b935a4b (diff)
downloadcpython-669b755c92aac40cc3d14e94b9e6dbc1e48d3ef0.zip
cpython-669b755c92aac40cc3d14e94b9e6dbc1e48d3ef0.tar.gz
cpython-669b755c92aac40cc3d14e94b9e6dbc1e48d3ef0.tar.bz2
#14269: smtpd now conforms to the RFC and requires HELO before MAIL.
This is a backward incompatible change, but since it is an RFC conformance bug and all real mail servers that I know of do conform to the RFC in this regard, I believe it is an acceptable change for a feature release. Patch by Jason Killen.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 2cd02bf..bc049c0 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -531,6 +531,7 @@ Magnus Kessler
Lawrence Kesteloot
Vivek Khera
Mads Kiilerich
+Jason Killen
Taek Joo Kim
W. Trevor King
Paul Kippes
diff --git a/Misc/NEWS b/Misc/NEWS
index 69388ca..94f3fc8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #14269: SMTPD now conforms to the RFC and requires a HELO command
+ before MAIL, RCPT, or DATA.
+
- Issue #13694: asynchronous connect in asyncore.dispatcher does not set addr
attribute.