[Python-checkins] python/dist/src/Lib smtpd.py,1.12,1.13

bwarsaw@sourceforge.net bwarsaw@sourceforge.net
Mon, 13 May 2002 19:13:32 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv2103

Modified Files:
	smtpd.py 
Log Message:
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.


Index: smtpd.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/smtpd.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** smtpd.py	11 Feb 2002 18:05:05 -0000	1.12
--- smtpd.py	14 May 2002 02:13:30 -0000	1.13
***************
*** 242,248 ****
              self.push('501 Syntax: RCPT TO: <address>')
              return
-         if address.lower().startswith('stimpy'):
-             self.push('503 You suck %s' % address)
-             return
          self.__rcpttos.append(address)
          print >> DEBUGSTREAM, 'recips:', self.__rcpttos
--- 242,245 ----