diff options
author | Mark Sapiro <mark@msapiro.net> | 2009-02-20 14:22:04 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2009-02-20 14:22:04 -0800 |
commit | fff53e1d722d66336a204569a5f7a4daebacb72c (patch) | |
tree | fa9ea54e703e9f99ead0a643cc7555cf806b6271 /Mailman/Bouncers/SimpleWarning.py | |
parent | ef2cdaf9f435381e9bf09dcc0142121abdcf10c2 (diff) | |
download | mailman2-fff53e1d722d66336a204569a5f7a4daebacb72c.tar.gz mailman2-fff53e1d722d66336a204569a5f7a4daebacb72c.tar.xz mailman2-fff53e1d722d66336a204569a5f7a4daebacb72c.zip |
Recognize a couple more bounces.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Bouncers/SimpleWarning.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mailman/Bouncers/SimpleWarning.py b/Mailman/Bouncers/SimpleWarning.py index 34690625..ab8d6aa2 100644 --- a/Mailman/Bouncers/SimpleWarning.py +++ b/Mailman/Bouncers/SimpleWarning.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2008 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2009 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 @@ -53,6 +53,10 @@ patterns = [ (_c('THIS IS A WARNING MESSAGE ONLY'), _c('Message will be retried'), _c(r'\s*(?P<addr>\S+@\S+)\s*')), + # RS ver 1.0.95vs ? - see comments for MessageSwitch + (_c('We will continue to try to deliver'), + _c('.+'), + _c('(?P<addr>.+)')), # Next one goes here... ] |