diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-07-19 01:38:54 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-07-19 01:38:54 (GMT) |
commit | 4634676cec29def3c70cf84ba00e6d7586bbaab7 (patch) | |
tree | 40accb2a94ade7fbca47667ca5f48d8dfb74cded /Misc | |
parent | ae4a78b0a8f1c280eee19018d7988063a34d1821 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |