diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-12-20 15:45:28 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-12-20 15:45:28 -0800 |
commit | 415f28f12f21b8e4ba0c86596c0d2d6dceb17ef0 (patch) | |
tree | 3a1f88564adc1c80b61e7bef5e7913d0e46b5e07 /Mailman/Bouncers | |
parent | 729b5a01726ff13c68bb794e079d424771682538 (diff) | |
download | mailman2-415f28f12f21b8e4ba0c86596c0d2d6dceb17ef0.tar.gz mailman2-415f28f12f21b8e4ba0c86596c0d2d6dceb17ef0.tar.xz mailman2-415f28f12f21b8e4ba0c86596c0d2d6dceb17ef0.zip |
Added recognition for a kundenserver.de warning to simplewarning.py
Diffstat (limited to 'Mailman/Bouncers')
-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 ab8d6aa2..4f5958ea 100644 --- a/Mailman/Bouncers/SimpleWarning.py +++ b/Mailman/Bouncers/SimpleWarning.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2009 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2013 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 @@ -57,6 +57,10 @@ patterns = [ (_c('We will continue to try to deliver'), _c('.+'), _c('(?P<addr>.+)')), + # kundenserver.de + (_c('not yet been delivered'), + _c('No action is required on your part'), + _c(r'\s*<?(?P<addr>\S+@[^>\s]+)>?\s*')), # Next one goes here... ] |