From a1ab1cc12c1c3e1e9505b9abb49d0c343f23d1a5 Mon Sep 17 00:00:00 2001 From: Vosjedev Date: Fri, 21 Nov 2025 18:22:55 +0100 Subject: [smtp] Don't log email contents --- src/acit/smtpplugin.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/acit/smtpplugin.py b/src/acit/smtpplugin.py index 8c47f75..fafa892 100644 --- a/src/acit/smtpplugin.py +++ b/src/acit/smtpplugin.py @@ -206,7 +206,6 @@ class SmtpPlugin(): import traceback self.mlog("An error occured in the SMTP runner:\n",traceback.format_exc()) self.mlog("As a result, the following email was discarded: %s '%s'"%(item.get("message-id"),item.get("subject"))) - self.mlog("Raw:\n"+item.as_string()) finally: self.que.task_done() -- cgit