diff options
Diffstat (limited to 'src/mailman/bouncers/qmail.py')
| -rw-r--r-- | src/mailman/bouncers/qmail.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mailman/bouncers/qmail.py b/src/mailman/bouncers/qmail.py index d5f34fd65..a8063aa46 100644 --- a/src/mailman/bouncers/qmail.py +++ b/src/mailman/bouncers/qmail.py @@ -45,11 +45,12 @@ from mailman.interfaces.bounce import IBounceDetector # Other (non-standard?) intros have been observed in the wild. introtags = [ - 'Hi. This is the', "We're sorry. There's a problem", 'Check your send e-mail address.', + 'Hi. The MTA program at', + 'Hi. This is the', 'This is the mail delivery agent at', - 'Unfortunately, your mail was not delivered' + 'Unfortunately, your mail was not delivered', ] acre = re.compile(r'<(?P<addr>[^>]*)>:') @@ -93,4 +94,4 @@ class Qmail: else: # We're not looking at anything in particular. pass - return list(addresses) + return addresses |
