diff options
author | Mark Sapiro <msapiro@value.net> | 2011-12-25 09:25:47 -0800 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2011-12-25 09:25:47 -0800 |
commit | a6ff8e611b314b145add34b43c278944957d8d5e (patch) | |
tree | 9c10e449438657249f9ba27829fcf1ebeafa51dd /Mailman | |
parent | 5326d6b9d132f23acfe1d79cfbd9793e9aa4a3a4 (diff) | |
download | mailman2-a6ff8e611b314b145add34b43c278944957d8d5e.tar.gz mailman2-a6ff8e611b314b145add34b43c278944957d8d5e.tar.xz mailman2-a6ff8e611b314b145add34b43c278944957d8d5e.zip |
Added recognition for another Qmail bounce.
Diffstat (limited to 'Mailman')
-rwxr-xr-x[-rw-r--r--] | Mailman/Bouncers/Qmail.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mailman/Bouncers/Qmail.py b/Mailman/Bouncers/Qmail.py index 10da479b..6d742373 100644..100755 --- a/Mailman/Bouncers/Qmail.py +++ b/Mailman/Bouncers/Qmail.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2009 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2011 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -36,7 +36,8 @@ introtags = [ "We're sorry. There's a problem", 'Check your send e-mail address.', 'This is the mail delivery agent at', - 'Unfortunately, your mail was not delivered' + 'Unfortunately, your mail was not delivered', + 'Your mail message to the following', ] acre = re.compile(r'<(?P<addr>[^>]*)>:') |