diff options
-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... ] |