summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-07-19 01:38:54 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-07-19 01:38:54 (GMT)
commit4634676cec29def3c70cf84ba00e6d7586bbaab7 (patch)
tree40accb2a94ade7fbca47667ca5f48d8dfb74cded /Misc
parentae4a78b0a8f1c280eee19018d7988063a34d1821 (diff)
downloadcpython-4634676cec29def3c70cf84ba00e6d7586bbaab7.zip
cpython-4634676cec29def3c70cf84ba00e6d7586bbaab7.tar.gz
cpython-4634676cec29def3c70cf84ba00e6d7586bbaab7.tar.bz2
#7484: no more <> around addresses in VRFY or EXPN
The RFC doesn't say that they are allowed; apparently many mailers accept them, but not postfix. Contributions to this patch were made by Felipe Cruz and Catalin Iacob. The changeset also adds additional indirect tests for quoteaddr (null address and IDNA-encoded address).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f444709..3325966 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #7484: smtplib no longer puts <> around addresses in VRFY and EXPN
+ commands; they aren't required and in fact postfix doesn't support that form.
+
- Close the call queue in concurrent.futures.ProcessPoolExecutor when
shutdown() is called, without waiting for the garbage collector to kick in.