mirror of
https://github.com/chatmail/core.git
synced 2026-05-11 19:06:29 +03:00
fix: don't leak Group-ID in Message-ID
Chat assignment based on In-Reply-To and References works good enough even if the message cannot be decrypted.
This commit is contained in:
@@ -551,7 +551,7 @@ impl<'a> MimeFactory<'a> {
|
||||
|
||||
let rfc724_mid = match self.loaded {
|
||||
Loaded::Message { .. } => self.msg.rfc724_mid.clone(),
|
||||
Loaded::Mdn { .. } => create_outgoing_rfc724_mid(None, &self.from_addr),
|
||||
Loaded::Mdn { .. } => create_outgoing_rfc724_mid(&self.from_addr),
|
||||
};
|
||||
let rfc724_mid_headervalue = render_rfc724_mid(&rfc724_mid);
|
||||
let rfc724_mid_header = Header::new("Message-ID".into(), rfc724_mid_headervalue);
|
||||
|
||||
Reference in New Issue
Block a user