diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2019-05-23 15:42:22 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2019-05-23 15:42:22 +0900 |
commit | 83402ad71a22c272ea825068e496efc7fdcebb86 (patch) | |
tree | d44426fad9917d192dfd69c3ee1fef004575b0fc /Mailman/Bouncers | |
parent | 5ebdd6c6305f2f0a564540d0469ed66096cc41a1 (diff) | |
parent | e924228ee33e529f4a9d63b9bdf88ff0d187c76f (diff) | |
download | mailman2-83402ad71a22c272ea825068e496efc7fdcebb86.tar.gz mailman2-83402ad71a22c272ea825068e496efc7fdcebb86.tar.xz mailman2-83402ad71a22c272ea825068e496efc7fdcebb86.zip |
catch up Japanese translation of Mailman.py.in for change of upstream rev 1811
Diffstat (limited to 'Mailman/Bouncers')
-rw-r--r-- | Mailman/Bouncers/DSN.py | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/Mailman/Bouncers/DSN.py b/Mailman/Bouncers/DSN.py index b316c696..06edc5b0 100644 --- a/Mailman/Bouncers/DSN.py +++ b/Mailman/Bouncers/DSN.py @@ -35,7 +35,7 @@ except NameError: -def check(msg): +def process(msg): # Iterate over each message/delivery-status subpart addrs = [] for part in typed_subpart_iterator(msg, 'message', 'delivery-status'): @@ -86,29 +86,3 @@ def check(msg): realname, a = parseaddr(a) rtnaddrs[a] = True return rtnaddrs.keys() - - - -def process(msg): - # We've seen some fairly bogus DSNs, allegedly from postfix that are - # multipart/mixed with 3 subparts - a text/plain postfix like part, a - # message/delivery-status part and a message/rfc822 part with the original - # message. Deal with it as follows. - if (msg.is_multipart() and len(msg.get_payload()) == 3 and - msg.get_payload()[1].get_content_type() == 'message/delivery-status'): - return check(msg.get_payload()[1]) - # A DSN has been seen wrapped with a "legal disclaimer" by an outgoing MTA - # in a multipart/mixed outer part. - if msg.is_multipart() and msg.get_content_subtype() == 'mixed': - msg = msg.get_payload()[0] - # The above will suffice if the original message 'parts' were wrapped with - # the disclaimer added, but the original DSN can be wrapped as a - # message/rfc822 part. We need to test that too. - if msg.is_multipart() and msg.get_content_type() == 'message/rfc822': - msg = msg.get_payload()[0] - # The report-type parameter should be "delivery-status", but it seems that - # some DSN generating MTAs don't include this on the Content-Type: header, - # so let's relax the test a bit. - if not msg.is_multipart() or msg.get_content_subtype() <> 'report': - return None - return check(msg) |