diff options
author | Mark Sapiro <mark@msapiro.net> | 2017-02-14 22:30:03 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2017-02-14 22:30:03 -0800 |
commit | c78ea26f8f04cd2e3d2cf231736bcc95ec8cccd5 (patch) | |
tree | e6b0a781515c73be43d32a359e635870d90cdcb4 /Mailman/Bouncers/SimpleMatch.py | |
parent | a852463283f44357fec29e0bce49f3cc83ed9c2f (diff) | |
download | mailman2-c78ea26f8f04cd2e3d2cf231736bcc95ec8cccd5.tar.gz mailman2-c78ea26f8f04cd2e3d2cf231736bcc95ec8cccd5.tar.xz mailman2-c78ea26f8f04cd2e3d2cf231736bcc95ec8cccd5.zip |
Added recognition for a newly seen mailEnable bounce.
Diffstat (limited to '')
-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 2aa082a2..e84d2255 100644 --- a/Mailman/Bouncers/SimpleMatch.py +++ b/Mailman/Bouncers/SimpleMatch.py @@ -188,6 +188,10 @@ PATTERNS = [ (_c('A message that you sent was rejected'), _c('This is a copy of your message'), _c('\s(?P<addr>[^\s@]+@[^\s@]+)')), + # MailEnable + (_c('Message could not be delivered to some recipients.'), + _c('Message headers follow'), + _c('Recipient: \[SMTP:(?P<addr>[^\s@]+@[^\s@]+)\]')), # Next one goes here... ] |