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