From bdc8289e06fb95578187e203048d7ae445e5bb6d Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 14 May 2002 02:13:30 +0000 Subject: [PATCH] smtp_RCPT(): Removed a somewhat embarrassing debugging line, found by Scot Stevenson. Could be a bug fix candidate, but probably doesn't matter much unless a certain blue-nosed cat suddenly becomes corporeal and starts emailing some stmp.py (sic) fronted mailer. --- Lib/smtpd.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/smtpd.py b/Lib/smtpd.py index bd9163779d..2d52f0fd84 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -241,9 +241,6 @@ class SMTPChannel(asynchat.async_chat): 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') -- 2.50.1