diff --git a/Lib/smtpd.py b/Lib/smtpd.py index bd9163779dc..2d52f0fd84c 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -241,9 +241,6 @@ def smtp_RCPT(self, arg): if not address: self.push('501 Syntax: RCPT TO:
') return - if address.lower().startswith('stimpy'): - self.push('503 You suck %s' % address) - return self.__rcpttos.append(address) print >> DEBUGSTREAM, 'recips:', self.__rcpttos self.push('250 Ok')