summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorStéphane Wirtel <stephane@wirtel.be>2018-01-31 00:02:51 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2018-01-31 00:02:51 (GMT)
commit8d83e4ba7823827bcbc119db887004d5c3a63dc6 (patch)
tree91da858d47025edb701f9d165cfbf6383f984788 /Misc
parent1e17d4aaff5c7ca972bab437949d2bb51c5b30f7 (diff)
downloadcpython-8d83e4ba7823827bcbc119db887004d5c3a63dc6.zip
cpython-8d83e4ba7823827bcbc119db887004d5c3a63dc6.tar.gz
cpython-8d83e4ba7823827bcbc119db887004d5c3a63dc6.tar.bz2
bpo-32727: smtplib's SMTP.send_message behaves differently with from_addr and to_addrs (#5451)
Do not pass the name field in the 'from' address in the SMTP envelope.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-01-30-17-46-18.bpo-32727.aHVsRC.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-01-30-17-46-18.bpo-32727.aHVsRC.rst b/Misc/NEWS.d/next/Library/2018-01-30-17-46-18.bpo-32727.aHVsRC.rst
new file mode 100644
index 0000000..22c2196
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-01-30-17-46-18.bpo-32727.aHVsRC.rst
@@ -0,0 +1 @@
+Do not include name field in SMTP envelope from address. Patch by Stéphane Wirtel