aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Bouncers/Qmail.py
diff options
context:
space:
mode:
authormsapiro <>2006-04-04 23:23:17 +0000
committermsapiro <>2006-04-04 23:23:17 +0000
commit31fc369a3fa0853bc71e4282d3863a7750a8ad7f (patch)
tree915ffd73d8288aa88c2ae3e66953dbdcc146ac84 /Mailman/Bouncers/Qmail.py
parentc40ea27927120445c799ebcba20065b918c05465 (diff)
downloadmailman2-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.py3
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>[^>]*)>:')