summaryrefslogtreecommitdiff
path: root/Mailman/Bouncers/SimpleMatch.py
diff options
context:
space:
mode:
authormsapiro2006-01-23 21:09:15 +0000
committermsapiro2006-01-23 21:09:15 +0000
commit278e4f0fdf1056de6f90f37e13f21c649c84ec20 (patch)
tree955a9f9ced2d3ee95118de43f89bd1a6a15137d0 /Mailman/Bouncers/SimpleMatch.py
parent01485a7944cfa1552b0166912082eca9bdf94f7d (diff)
downloadmailman-278e4f0fdf1056de6f90f37e13f21c649c84ec20.tar.gz
mailman-278e4f0fdf1056de6f90f37e13f21c649c84ec20.tar.zst
mailman-278e4f0fdf1056de6f90f37e13f21c649c84ec20.zip
Diffstat (limited to 'Mailman/Bouncers/SimpleMatch.py')
-rw-r--r--Mailman/Bouncers/SimpleMatch.py6
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...
]