diff options
Diffstat (limited to 'Mailman/Bouncers/SimpleWarning.py')
-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... ] |