From df32de0bf1c017802270fc4af17052d7c1b27242 Mon Sep 17 00:00:00 2001 From: Vitaliy Vasilenko Date: Thu, 2 Jan 2020 00:48:23 +0200 Subject: [PATCH] Tune DMARC report Add customization - message-id from --- src/plugins/lua/dmarc.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/lua/dmarc.lua b/src/plugins/lua/dmarc.lua index e6a520e8e..390abd41c 100644 --- a/src/plugins/lua/dmarc.lua +++ b/src/plugins/lua/dmarc.lua @@ -44,6 +44,7 @@ local report_settings = { smtp_port = 25, retries = 2, from_name = 'Rspamd', + msgid_from = 'rspamd', } local report_template = [[From: "{= from_name =}" <{= from_addr =}> To: {= rcpt =} @@ -926,7 +927,7 @@ if opts['reporting'] == true then submitter = report_settings.domain, report_id = report_id, report_date = rspamd_util.time_to_string(rspamd_util.get_time()), - message_id = rspamd_util.random_hex(12) .. '@rspamd', + message_id = rspamd_util.random_hex(16) .. '@' .. report_settings.msgid_from, report_start = report_start, report_end = report_end }, true) -- 2.39.5