Commit 0c803319 authored by Benjamin Peterson's avatar Benjamin Peterson

fix extended command syntax (closes #23872)

parent 9a6e201f
...@@ -413,7 +413,7 @@ class SMTPChannel(asynchat.async_chat): ...@@ -413,7 +413,7 @@ class SMTPChannel(asynchat.async_chat):
def smtp_HELP(self, arg): def smtp_HELP(self, arg):
if arg: if arg:
extended = ' [SP <mail parameters]' extended = ' [SP <mail-parameters>]'
lc_arg = arg.upper() lc_arg = arg.upper()
if lc_arg == 'EHLO': if lc_arg == 'EHLO':
self.push('250 Syntax: EHLO hostname') self.push('250 Syntax: EHLO hostname')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment