X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=mimedecode.py;h=9433b0d0caad0411bca110c7024f9f5f30a0a65e;hb=bf2931c9491ed9d9155dbd97feb48ac5fb0bde49;hp=62097e4808096650298dfe1070bde0e8da690c44;hpb=8ce5154649860e66ddb247bf94cb19b3b7c74013;p=mimedecode.git diff --git a/mimedecode.py b/mimedecode.py index 62097e4..9433b0d 100755 --- a/mimedecode.py +++ b/mimedecode.py @@ -2,8 +2,13 @@ """Decode MIME message""" import sys, os +import subprocess from mimedecode_version import __version__, \ __author__, __copyright__, __license__ +if sys.version_info[0] >= 3: + # Replace email.message._formatparam with _formatparam from Python 2.7 + # to avoid re-encoding non-ascii params. + import formatparam_27 me = os.path.basename(sys.argv[0]) @@ -32,7 +37,11 @@ def output_headers(msg): for key, value in msg.items(): output(key) output(": ") - output(value) + value = value.split(';', 1) + output(value[0]) + if len(value) == 2: + output(";") + output(_decode_header(value[1], strip=False)) output(os.linesep) output(os.linesep) # End of headers @@ -214,6 +223,10 @@ def decode_body(msg, s): caps = mailcap.getcaps() content_type = msg.get_content_type() + if content_type.startswith('text/'): + charset = msg.get_content_charset() + else: + charset = None filename = tempfile.mktemp() command = None @@ -231,18 +244,25 @@ def decode_body(msg, s): return s outfile = open(filename, 'wb') + if charset and bytes is not str and isinstance(s, bytes): # Python3 + s = s.decode(charset, "replace") if not isinstance(s, bytes): s = s.encode(g.default_encoding, "replace") outfile.write(s) outfile.close() - pipe = os.popen(command, 'r') - s = pipe.read() - pipe.close() + pipe = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE) + new_s = pipe.stdout.read() + pipe.stdout.close() + if pipe.wait() == 0: # result=0, Ok + s = new_s os.remove(filename) set_content_type(msg, "text/plain") - msg["X-MIME-Autoconverted"] = "from %s to text/plain by %s id %s" % (content_type, g.host_name, command.split()[0]) + if s is new_s: + msg["X-MIME-Autoconverted"] = "from %s to text/plain by %s id %s" % (content_type, g.host_name, command.split()[0]) + else: + msg["X-MIME-Autoconverted"] = "failed conversion from %s to text/plain by %s id %s" % (content_type, g.host_name, command.split()[0]) return s