diff options
author | Mark Sapiro <msapiro@value.net> | 2010-12-22 08:07:37 -0800 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2010-12-22 08:07:37 -0800 |
commit | 20e82fb48403adac142f2a65064e63ef99f21568 (patch) | |
tree | 2f52017103261bfa777044f820384d50eab702f4 /Mailman | |
parent | db33278a21b08a9f0f19963d133b5f0b878b3a1a (diff) | |
download | mailman2-20e82fb48403adac142f2a65064e63ef99f21568.tar.gz mailman2-20e82fb48403adac142f2a65064e63ef99f21568.tar.xz mailman2-20e82fb48403adac142f2a65064e63ef99f21568.zip |
Added bounce recognition for a bogus Dovecot MDN. Bug #693134.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Bouncers/SimpleMatch.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Mailman/Bouncers/SimpleMatch.py b/Mailman/Bouncers/SimpleMatch.py index 1c88d5ac..0607ce86 100644 --- a/Mailman/Bouncers/SimpleMatch.py +++ b/Mailman/Bouncers/SimpleMatch.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2009 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2010 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 @@ -178,6 +178,12 @@ PATTERNS = [ (_c('--------Message not delivered'), _c('--------Error Detail'), _c('^\s*(?P<addr>[^\s@]+@[^\s@]+)\s*$')), + # Dovecot LDA Over quota MDN (bogus - should be DSN). + (_c('^Your message'), + _c('^Reporting'), + _c( + 'Your message to (?P<addr>[^\s@]+@[^\s@]+) was automatically rejected' + )), # Next one goes here... ] |