diff options
Diffstat (limited to 'Mailman/Bouncers/SimpleMatch.py')
-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 67e3a7f8..a6a952a2 100644 --- a/Mailman/Bouncers/SimpleMatch.py +++ b/Mailman/Bouncers/SimpleMatch.py @@ -170,6 +170,10 @@ PATTERNS = [ (_c('The following recipient.*could not be reached'), _c('bogus stop pattern'), _c('^(?P<addr>[^\s@]+@[^\s@]+)\s*$')), + # lttf.com + (_c('Could not deliver message to'), + _c('^\s*--'), + _c('^Failed Recipient:\s*(?P<addr>[^\s@]+@[^\s@]+)\s*$')), # Next one goes here... ] |