2 Commits
0.0.6 ... 0.0.7

Author SHA1 Message Date
49bc12f93b Change version to 0.0.7 2020-01-21 16:13:51 +01:00
0dd09e2d5a Fix syntax error in CLI 2020-01-21 16:12:40 +01:00
2 changed files with 3 additions and 5 deletions

View File

@@ -118,10 +118,8 @@ def list_quarantine_emails(config, args):
metadata["date"]))
row["mailfrom"] = metadata["mailfrom"]
row["recipient"] = metadata["recipients"].pop(0)
if "subject" in emails[quarantine_id]["headers"].keys():
row["subject"] = emails[quarantine_id]["headers"]["subject"][:60]
else
row["subject"] = ""
if "subject" not in emails[quarantine_id]["headers"].keys():
emails[quarantine_id]["headers"]["subject"] = ""
rows.append(row)
if metadata["recipients"]:

View File

@@ -1 +1 @@
__version__ = "0.0.6"
__version__ = "0.0.7"