From db8829ff7aa50de9a22e83c112d1e6f734b2a643 Mon Sep 17 00:00:00 2001 From: Vosjedev Date: Thu, 6 Nov 2025 15:42:03 +0100 Subject: smtp: properly capitalise X-Acit-Delete-When-Sender header --- src/acit/smtpplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acit/smtpplugin.py b/src/acit/smtpplugin.py index 3b9cc81..5f3ebfb 100644 --- a/src/acit/smtpplugin.py +++ b/src/acit/smtpplugin.py @@ -83,7 +83,7 @@ class SmtpPlugin(): else: tosend["cc"]=from_ - tosend["x-acit-delete-when-sender"]=from_ + tosend["X-Acit-Delete-When-Sender"]=from_ else: -- cgit