diff options
author | msapiro <> | 2006-02-02 16:16:03 +0000 |
---|---|---|
committer | msapiro <> | 2006-02-02 16:16:03 +0000 |
commit | b0389235bc9c1310ab76460b3b0cd5ed5f096385 (patch) | |
tree | ec83ab8e40aae4ce0e309b0b3415693b296bd134 | |
parent | e67f02520c1652e320f3711f97da79da3536b0b9 (diff) | |
download | mailman2-b0389235bc9c1310ab76460b3b0cd5ed5f096385.tar.gz mailman2-b0389235bc9c1310ab76460b3b0cd5ed5f096385.tar.xz mailman2-b0389235bc9c1310ab76460b3b0cd5ed5f096385.zip |
Added bounces from yahoo.com on behalf of other domains like sbcglobal.net.
-rw-r--r-- | Mailman/Bouncers/SimpleMatch.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mailman/Bouncers/SimpleMatch.py b/Mailman/Bouncers/SimpleMatch.py index 2fd2557c..534fd862 100644 --- a/Mailman/Bouncers/SimpleMatch.py +++ b/Mailman/Bouncers/SimpleMatch.py @@ -83,6 +83,10 @@ PATTERNS = [ (_c('The email below could not be delivered to the following user:'), _c('Old message:'), _c('<(?P<addr>[^>]*)>')), + # Yahoo on behalf of other domains like sbcglobal.net + (_c('Unable to deliver message to the following address\(es\)\.'), + _c('--- Original message follows\.'), + _c('<(?P<addr>[^>]*)>:')), # Next one goes here... ] |