diff options
author | msapiro <> | 2006-04-04 23:23:17 +0000 |
---|---|---|
committer | msapiro <> | 2006-04-04 23:23:17 +0000 |
commit | 31fc369a3fa0853bc71e4282d3863a7750a8ad7f (patch) | |
tree | 915ffd73d8288aa88c2ae3e66953dbdcc146ac84 /Mailman/Bouncers/Qmail.py | |
parent | c40ea27927120445c799ebcba20065b918c05465 (diff) | |
download | mailman2-31fc369a3fa0853bc71e4282d3863a7750a8ad7f.tar.gz mailman2-31fc369a3fa0853bc71e4282d3863a7750a8ad7f.tar.xz mailman2-31fc369a3fa0853bc71e4282d3863a7750a8ad7f.zip |
Recognize more bounces - DSN.py, Qmail.py and SimpleMatch.py
Diffstat (limited to '')
-rw-r--r-- | Mailman/Bouncers/Qmail.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Bouncers/Qmail.py b/Mailman/Bouncers/Qmail.py index 2a2f8cd6..def4abfa 100644 --- a/Mailman/Bouncers/Qmail.py +++ b/Mailman/Bouncers/Qmail.py @@ -32,7 +32,8 @@ import email.Iterators # Other (non-standard?) intros have been observed in the wild. introtags = [ 'Hi. This is the', - "We're sorry. There's a problem" + "We're sorry. There's a problem", + 'Check your send e-mail address.' ] acre = re.compile(r'<(?P<addr>[^>]*)>:') |