summaryrefslogtreecommitdiff
path: root/Mailman/Bouncers/SMTP32.py
Commit message (Collapse)AuthorAgeFilesLines
* Bite the bullet: rename the Mailman package to mailman.Barry Warsaw2008-02-271-60/+0
|
* Tweak copyright years.Barry Warsaw2008-02-071-1/+1
|
* Mailman/Bouncers/SMTP32.py - Added a recognition. Improved address pattern.Mark Sapiro2007-11-111-4/+5
| | | | | | Mailman/Bouncers/SimpleMatch.py - Improved two regexps. Mailman/tests/test_bounces.py - Added a test.
* Update copyright years.bwarsaw2007-01-191-1/+1
|
* Fixed 'undeliverable to' pattern. It can have multiple spaces 'undeliverable ↵msapiro2006-02-051-1/+1
| | | | to'.
* Added another observed prefix 'unknown user:'msapiro2006-01-251-2/+4
|
* FSF office has moved. chdcking in for MAIN branch.tkikuchi2005-08-271-1/+1
|
* Update copyright years.bwarsaw2002-03-161-1/+1
|
* Convert from mimelib to email.bwarsaw2001-10-011-6/+2
| | | | | Also, use cStringIO directly instead of our own hack-around StringIO module.
* process(): Watch out for when the bounce has no X-Mailer: header.bwarsaw2001-09-101-1/+1
| | | | Reported by Luca Maranzano.
* It seems that all SMTP32 mailers have anbwarsaw2001-08-041-4/+22
| | | | | | | X-Mailer: <SMTP32 v.... header. Also, different prefix sentences before the address have been spotted in the wild.
* Conversion to mimelib.bwarsaw2001-02-151-4/+5
| | | | | | De-string-module-ify Other Python 2.0 constructs used where appropriate.
* Three new bounce detectors:bwarsaw2000-09-211-0/+42
- GroupWise.py which detects (I believe) Novell's GroupWise Internet Agent 5.5.3.1 and something called NTMail v4.30.0012 - SMTP32.py which detects something that claims in its X-Mailer: header to be "<SMTP32 vXXXXXX> where the X's are various version numbers. I've actually gotten a few bounces from three totally different domains with this header. I have no idea what it actually is. - SimpleMatch.py which detects a wide variety of simple matches of the form: ...a bunch of lines --- some start delimiter --- ...a bunch of lines some lines that look like they contain an email address ...maybe more bunches of lines --- some end delimiter --- There may actually be overlap between SimpleMatcher and other matches, I don't know. There's definitely overlap between SimpleMatcher and Catchall, the latter of which can probably go away eventually.