From c7fb64e2f390a449f7286be7987d9c1d03bf597e Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 6 Jul 2025 18:02:48 +0000 Subject: [PATCH] fix: send Autocrypt header in MDNs Otherwise MDNs are attributed to address-contacts rather than key-contacts. --- src/mimefactory.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mimefactory.rs b/src/mimefactory.rs index 4aa967668..8fdfff282 100644 --- a/src/mimefactory.rs +++ b/src/mimefactory.rs @@ -528,7 +528,7 @@ impl MimeFactory { Loaded::Message { msg, .. } => { msg.param.get_bool(Param::SkipAutocrypt).unwrap_or_default() } - Loaded::Mdn { .. } => true, + Loaded::Mdn { .. } => false, } }