From f8da9d327880e6edd159446424a91c556beb6ffb Mon Sep 17 00:00:00 2001 From: Thomas Gleixner Date: Tue, 12 Nov 2019 20:50:04 +0100 Subject: [PATCH] remail/mail: Add yet another outlook magic filename GpgOL_MIME_structure.txt is missing from the outlook GPG repair list. Signed-off-by: Thomas Gleixner --- remail/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remail/mail.py b/remail/mail.py index 90198b5..bb86800 100644 --- a/remail/mail.py +++ b/remail/mail.py @@ -374,7 +374,7 @@ def msg_sanitize_outlook(msg): if not fname: return - if fname != 'msg.gpg' and fname != 'msg.asc': + if fname not in ['msg.gpg', 'msg.asc', 'GpgOL_MIME_structure.txt']: return encpl = payload[1].get_payload()