cpython: 241c33b6cb95 (original) (raw)

--- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -374,6 +374,10 @@ class SMTPChannel(asynchat.async_chat): return address def smtp_MAIL(self, arg):

+ print('===> MAIL', arg, file=DEBUGSTREAM) address = self.__getaddr('FROM:', arg) if arg else None if not address: @@ -387,6 +391,10 @@ class SMTPChannel(asynchat.async_chat): self.push('250 Ok') def smtp_RCPT(self, arg):

+ print('===> RCPT', arg, file=DEBUGSTREAM) if not self.mailfrom: self.push('503 Error: need MAIL command') @@ -411,6 +419,10 @@ class SMTPChannel(asynchat.async_chat): self.push('250 Ok') def smtp_DATA(self, arg):

+ if not self.rcpttos: self.push('503 Error: need RCPT command') return

--- a/Lib/test/test_smtpd.py +++ b/Lib/test/test_smtpd.py @@ -39,6 +39,7 @@ class SMTPDServerTest(TestCase): channel.socket.queue_recv(line) channel.handle_read()

@@ -104,6 +105,11 @@ class SMTPDChannelTest(TestCase): self.write_line(b'NOOP') self.assertEqual(self.channel.socket.last, b'250 Ok\r\n')

+ def test_NOOP_bad_syntax(self): self.write_line(b'NOOP hi') self.assertEqual(self.channel.socket.last, @@ -113,17 +119,23 @@ class SMTPDChannelTest(TestCase): self.write_line(b'QUIT') self.assertEqual(self.channel.socket.last, b'221 Bye\r\n')

+ def test_QUIT_arg_ignored(self): self.write_line(b'QUIT bye bye') self.assertEqual(self.channel.socket.last, b'221 Bye\r\n') def test_bad_state(self): self.channel.smtp_state = 'BAD STATE'

def test_command_too_long(self):

@@ -133,6 +145,7 @@ class SMTPDChannelTest(TestCase): def test_data_too_long(self): # Small hack. Setting limit to 2K octets here will save us some time. self.channel.data_size_limit = 2048

@@ -142,43 +155,61 @@ class SMTPDChannelTest(TestCase): b'552 Error: Too much mail data\r\n') def test_need_MAIL(self):

def test_MAIL_syntax(self):

def test_MAIL_missing_from(self):

def test_MAIL_chevrons(self):

def test_nested_MAIL(self):

+ def test_need_RCPT(self):

def test_RCPT_syntax(self):

+ def test_data_dialog(self):

@@ -193,12 +224,19 @@ class SMTPDChannelTest(TestCase): [('peer', 'eggs@example', ['spam@example'], 'data\nmore')]) def test_DATA_syntax(self):

+ def test_data_transparency_section_4_5_2(self):

@@ -206,6 +244,7 @@ class SMTPDChannelTest(TestCase): self.assertEqual(self.channel.received_data, '.') def test_multiple_RCPT(self):

@@ -216,6 +255,7 @@ class SMTPDChannelTest(TestCase): def test_manual_status(self): # checks that the Channel is able to return a custom status message

@@ -223,6 +263,7 @@ class SMTPDChannelTest(TestCase): self.assertEqual(self.channel.socket.last, b'250 Okish\r\n') def test_RSET(self):

@@ -234,6 +275,11 @@ class SMTPDChannelTest(TestCase): self.assertEqual(self.server.messages, [('peer', 'foo@example', ['eggs@example'], 'data')])

+ def test_RSET_syntax(self): self.write_line(b'RSET hi') self.assertEqual(self.channel.socket.last, b'501 Syntax: RSET\r\n')

--- 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

--- 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