Add decoding of mail headers

This commit is contained in:
2020-01-29 21:35:37 +01:00
parent f4399312b4
commit 983362a69a
3 changed files with 29 additions and 17 deletions

View File

@@ -20,6 +20,8 @@ import logging.handlers
import sys
import time
from email.header import decode_header, make_header
import pyquarantine
from pyquarantine.version import __version__ as version
@@ -56,7 +58,7 @@ def print_table(columns, rows):
# get the length of the longest value
lengths.append(
len(str(max(rows, key=lambda x: len(str(x[key])))[key])))
# use the the longer one
# use the longer one
length = max(lengths)
column_lengths.append(length)
column_formats.append("{{:<{}}}".format(length))
@@ -120,7 +122,9 @@ def list_quarantine_emails(config, args):
row["recipient"] = metadata["recipients"].pop(0)
if "subject" not in emails[quarantine_id]["headers"].keys():
emails[quarantine_id]["headers"]["subject"] = ""
row["subject"] = emails[quarantine_id]["headers"]["subject"][:60]
row["subject"] = str(make_header(decode_header(
emails[quarantine_id]["headers"]["subject"])))[:60].replace(
"\r", "").replace("\n", "").strip()
rows.append(row)
if metadata["recipients"]: