summaryrefslogtreecommitdiff
path: root/Lib/test/test_smtplib.py
diff options
context:
space:
mode:
authorStéphane Wirtel <stephane@wirtel.be>2018-01-31 01:02:51 +0100
committerR. David Murray <rdmurray@bitdance.com>2018-01-30 19:02:51 -0500
commit8d83e4ba7823827bcbc119db887004d5c3a63dc6 (patch)
tree91da858d47025edb701f9d165cfbf6383f984788 /Lib/test/test_smtplib.py
parent1e17d4aaff5c7ca972bab437949d2bb51c5b30f7 (diff)
downloadcpython-git-8d83e4ba7823827bcbc119db887004d5c3a63dc6.tar.gz
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 'Lib/test/test_smtplib.py')
-rw-r--r--Lib/test/test_smtplib.py19
1 files changed, 18 insertions, 1 deletions
diff --git a/Lib/test/test_smtplib.py b/Lib/test/test_smtplib.py
index 040ad4e059..7991174fb5 100644
--- a/Lib/test/test_smtplib.py
+++ b/Lib/test/test_smtplib.py
@@ -825,6 +825,7 @@ class SimSMTPServer(smtpd.SMTPServer):
def __init__(self, *args, **kw):
self._extra_features = []
+ self._addresses = {}
smtpd.SMTPServer.__init__(self, *args, **kw)
def handle_accepted(self, conn, addr):
@@ -833,7 +834,8 @@ class SimSMTPServer(smtpd.SMTPServer):
decode_data=self._decode_data)
def process_message(self, peer, mailfrom, rcpttos, data):
- pass
+ self._addresses['from'] = mailfrom
+ self._addresses['tos'] = rcpttos
def add_feature(self, feature):
self._extra_features.append(feature)
@@ -1072,6 +1074,21 @@ class SMTPSimTests(unittest.TestCase):
self.assertRaises(UnicodeEncodeError, smtp.sendmail, 'Alice', 'Böb', '')
self.assertRaises(UnicodeEncodeError, smtp.mail, 'Älice')
+ def test_name_field_not_included_in_envelop_addresses(self):
+ smtp = smtplib.SMTP(
+ HOST, self.port, local_hostname='localhost', timeout=3
+ )
+ self.addCleanup(smtp.close)
+
+ message = EmailMessage()
+ message['From'] = email.utils.formataddr(('Michaël', 'michael@example.com'))
+ message['To'] = email.utils.formataddr(('René', 'rene@example.com'))
+
+ self.assertDictEqual(smtp.send_message(message), {})
+
+ self.assertEqual(self.serv._addresses['from'], 'michael@example.com')
+ self.assertEqual(self.serv._addresses['tos'], ['rene@example.com'])
+
class SimSMTPUTF8Server(SimSMTPServer):