[issue3802] smtpd.py __getaddr insufficient handling

2018-01-09 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I'm closing this as won't fix since smtpd.py is deprecated and will likely not get any future development. Please see aiosmtpd as a much better third party replacement. -- nosy: +barry resolution: -> wont fix stage: test needed -> resolved status:

[issue3802] smtpd.py __getaddr insufficient handling

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue3802] smtpd.py __getaddr insufficient handling

2013-11-20 Thread Leslie P. Polzer
Changes by Leslie P. Polzer : -- nosy: +lpolzer ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue3802] smtpd.py __getaddr insufficient handling

2011-10-20 Thread Petri Lehtinen
Petri Lehtinen added the comment: AFAIK, the extra MAIL FROM and RCPT TO parameters are only valid for ESMTP. smtpd doesn't currently handle ESMTP, so this should not be a problem. -- nosy: +petri.lehtinen versions: +Python 2.7, Python 3.2, Python 3.3 -Python 2.6 _

[issue3802] smtpd.py __getaddr insufficient handling

2010-07-04 Thread Mark Lawrence
Mark Lawrence added the comment: Note there is a patch inline, not sure if a doc patch is needed for this. -- keywords: +patch nosy: +BreamoreBoy stage: -> unit test needed type: -> behavior ___ Python tracker __

[issue3802] smtpd.py __getaddr insufficient handling

2008-09-07 Thread Marcus CM
New submission from Marcus CM <[EMAIL PROTECTED]>: The __getaddr does not handle certain valid MAIL FROM well : For eg, <[EMAIL PROTECTED]> SIZE= AUTH=<> would result in a mismatch of bracket handling. Suggested fix is :- def __getaddr(self, keyword, arg): address = None