aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2019-11-12 20:50:04 +0100
committerThomas Gleixner <tglx@linutronix.de>2019-11-12 20:50:04 +0100
commitf8da9d327880e6edd159446424a91c556beb6ffb (patch)
tree0a0d5224edf0ddd2b3433afcf6648a9f5e4efb1d
parentaa10d8c48a91ebb04544eaa7534f6c9e9a6dc472 (diff)
downloadremail-f8da9d327880e6edd159446424a91c556beb6ffb.tar.gz
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 <tglx@linutronix.de>
-rw-r--r--remail/mail.py2
1 files changed, 1 insertions, 1 deletions
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()