diff options
author | msapiro <> | 2006-01-09 17:53:56 +0000 |
---|---|---|
committer | msapiro <> | 2006-01-09 17:53:56 +0000 |
commit | 0dcb32eac518c64114c4726d2db3cad11bfb8a6f (patch) | |
tree | 7739abe5bba300405e17e99dbeebf9d8f23ac8b2 /Mailman | |
parent | e6677adc3deba62d4a05c0ff4ce891ec09b9a925 (diff) | |
download | mailman2-0dcb32eac518c64114c4726d2db3cad11bfb8a6f.tar.gz mailman2-0dcb32eac518c64114c4726d2db3cad11bfb8a6f.tar.xz mailman2-0dcb32eac518c64114c4726d2db3cad11bfb8a6f.zip |
Add 'full mailbox' from Prodigy.net
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Bouncers/SimpleMatch.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Mailman/Bouncers/SimpleMatch.py b/Mailman/Bouncers/SimpleMatch.py index c39248b5..16220e87 100644 --- a/Mailman/Bouncers/SimpleMatch.py +++ b/Mailman/Bouncers/SimpleMatch.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2003 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2006 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 @@ -12,7 +12,8 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, +# USA. """Recognizes simple heuristically delimited bounces.""" @@ -74,6 +75,10 @@ PATTERNS = [ (_c('This message was created automatically by mail delivery'), _c('^---- START OF RETURNED MESSAGE ----'), _c("addressed to '(?P<addr>[^']*)'")), + # Prodigy.net full mailbox + (_c("User's mailbox is full:"), + _c('Unable to deliver mail.'), + _c("User's mailbox is full:\s*<(?P<addr>.*)>.*$")), # Next one goes here... ] |