summaryrefslogtreecommitdiff
path: root/Mailman/Bouncers/SimpleMatch.py
diff options
context:
space:
mode:
authormsapiro2006-04-04 23:14:35 +0000
committermsapiro2006-04-04 23:14:35 +0000
commitdc21c189476a36df8306a50359b1312e3c7b321c (patch)
tree59adbdd385046ab505199d5285392e5975711e30 /Mailman/Bouncers/SimpleMatch.py
parentec16627baffea1ad0ac4c8fd60a4f90d4897d9d4 (diff)
downloadmailman-dc21c189476a36df8306a50359b1312e3c7b321c.tar.gz
mailman-dc21c189476a36df8306a50359b1312e3c7b321c.tar.zst
mailman-dc21c189476a36df8306a50359b1312e3c7b321c.zip
Diffstat (limited to 'Mailman/Bouncers/SimpleMatch.py')
-rw-r--r--Mailman/Bouncers/SimpleMatch.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/Mailman/Bouncers/SimpleMatch.py b/Mailman/Bouncers/SimpleMatch.py
index 232b8b7ad..12eeffdca 100644
--- a/Mailman/Bouncers/SimpleMatch.py
+++ b/Mailman/Bouncers/SimpleMatch.py
@@ -89,11 +89,11 @@ PATTERNS = [
_c('<(?P<addr>[^>]*)>:')),
# kundenserver.de
(_c('A message that you sent could not be delivered'),
- _c('^--- The header of the original'),
+ _c('^---'),
_c('<(?P<addr>[^>]*)>')),
# another kundenserver.de
(_c('A message that you sent could not be delivered'),
- _c('^--- The header of the original'),
+ _c('^---'),
_c('^(?P<addr>[^\s@]+@[^\s@:]+):')),
# thehartford.com
(_c('Delivery to the following recipients failed'),
@@ -119,6 +119,14 @@ PATTERNS = [
(_c('^Invalid final delivery userid:'),
_c('^Original message follows.'),
_c('\s*(?P<addr>[^\s@]+@[^\s@]+)\s*$')),
+ # E500_SMTP_Mail_Service@lerctr.org
+ (_c('------ Failed Recipients ------'),
+ _c('-------- Returned Mail --------'),
+ _c('<(?P<addr>[^>]*)>')),
+ # cynergycom.net
+ (_c('A message that you sent could not be delivered'),
+ _c('^---'),
+ _c('(?P<addr>[^\s@]+@[^\s@)]+)')),
# Next one goes here...
]