diff options
author | msapiro <> | 2006-02-05 19:46:20 +0000 |
---|---|---|
committer | msapiro <> | 2006-02-05 19:46:20 +0000 |
commit | b0165fb2b136affffe199dc64ff054136be2cb62 (patch) | |
tree | 9b93c2b2a4404a68e23e3de73bab4ccbbac86dca | |
parent | 6b2e1dd0997cc7791154e5e56fbbcec23637dd92 (diff) | |
download | mailman2-b0165fb2b136affffe199dc64ff054136be2cb62.tar.gz mailman2-b0165fb2b136affffe199dc64ff054136be2cb62.tar.xz mailman2-b0165fb2b136affffe199dc64ff054136be2cb62.zip |
Fixed 'undeliverable to' pattern. It can have multiple spaces 'undeliverable to'.
-rw-r--r-- | Mailman/Bouncers/SMTP32.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Bouncers/SMTP32.py b/Mailman/Bouncers/SMTP32.py index 9273d17c..3ad7ce44 100644 --- a/Mailman/Bouncers/SMTP32.py +++ b/Mailman/Bouncers/SMTP32.py @@ -37,7 +37,7 @@ acre = re.compile(r''' user\ mailbox[^:]*: # have been spotted in the |delivery\ failed[^:]*: # wild... |unknown\ user[^:]*: - |undeliverable\ to + |undeliverable\ +to ) \s* # space separator (?P<addr>.*) # and finally, the address |