diff options
| author | msapiro | 2006-01-23 21:09:15 +0000 |
|---|---|---|
| committer | msapiro | 2006-01-23 21:09:15 +0000 |
| commit | 278e4f0fdf1056de6f90f37e13f21c649c84ec20 (patch) | |
| tree | 955a9f9ced2d3ee95118de43f89bd1a6a15137d0 /Mailman/Bouncers/SimpleMatch.py | |
| parent | 01485a7944cfa1552b0166912082eca9bdf94f7d (diff) | |
| download | mailman-278e4f0fdf1056de6f90f37e13f21c649c84ec20.tar.gz mailman-278e4f0fdf1056de6f90f37e13f21c649c84ec20.tar.zst mailman-278e4f0fdf1056de6f90f37e13f21c649c84ec20.zip | |
Diffstat (limited to 'Mailman/Bouncers/SimpleMatch.py')
| -rw-r--r-- | Mailman/Bouncers/SimpleMatch.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mailman/Bouncers/SimpleMatch.py b/Mailman/Bouncers/SimpleMatch.py index 16220e87a..2fd2557c1 100644 --- a/Mailman/Bouncers/SimpleMatch.py +++ b/Mailman/Bouncers/SimpleMatch.py @@ -78,7 +78,11 @@ PATTERNS = [ # Prodigy.net full mailbox (_c("User's mailbox is full:"), _c('Unable to deliver mail.'), - _c("User's mailbox is full:\s*<(?P<addr>.*)>.*$")), + _c("User's mailbox is full:\s*<(?P<addr>[^>]*)>")), + # Microsoft SMTPSVC + (_c('The email below could not be delivered to the following user:'), + _c('Old message:'), + _c('<(?P<addr>[^>]*)>')), # Next one goes here... ] |
