-
-
Notifications
You must be signed in to change notification settings - Fork 104
fix: Ignore protected headers in outer message part (#6357) #6370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -419,26 +419,9 @@ impl MimeMessage { | |
timestamp_sent = | ||
Self::get_timestamp_sent(&mail.headers, timestamp_sent, timestamp_rcvd); | ||
if !signatures.is_empty() { | ||
// Remove unsigned opportunistically protected headers from messages considered | ||
// Autocrypt-encrypted / displayed with padlock. | ||
// For "Subject" see <https://github.com/deltachat/deltachat-core-rust/issues/1790>. | ||
for h in [ | ||
HeaderDef::Subject, | ||
HeaderDef::ChatGroupId, | ||
HeaderDef::ChatGroupName, | ||
HeaderDef::ChatGroupNameChanged, | ||
HeaderDef::ChatGroupNameTimestamp, | ||
HeaderDef::ChatGroupAvatar, | ||
HeaderDef::ChatGroupMemberRemoved, | ||
HeaderDef::ChatGroupMemberAdded, | ||
HeaderDef::ChatGroupMemberTimestamps, | ||
HeaderDef::ChatGroupPastMembers, | ||
HeaderDef::ChatDelete, | ||
HeaderDef::ChatEdit, | ||
HeaderDef::ChatUserAvatar, | ||
] { | ||
headers.remove(h.get_headername()); | ||
} | ||
// Other headers are removed by `MimeMessage::merge_headers()`. | ||
headers.remove("subject"); | ||
} | ||
|
||
// let known protected headers from the decrypted | ||
|
@@ -1546,12 +1529,15 @@ impl MimeMessage { | |
chat_disposition_notification_to: &mut Option<SingleInfo>, | ||
fields: &[mailparse::MailHeader<'_>], | ||
) { | ||
// Keep Subject so that it's displayed for signed-only messages. They are shown w/o a | ||
// padlock anyway. | ||
headers.retain(|k, _| !is_protected(k) || k == "subject"); | ||
for field in fields { | ||
// lowercasing all headers is technically not correct, but makes things work better | ||
let key = field.get_key().to_lowercase(); | ||
if !headers.contains_key(&key) || // key already exists, only overwrite known types (protected headers) | ||
is_known(&key) || key.starts_with("chat-") | ||
{ | ||
// Don't overwrite unprotected headers, but overwrite protected ones because DKIM | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't understand this comment, why is it important here that DKIM signature applies to last headers? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At least |
||
// signature applies to the last headers. | ||
if !headers.contains_key(&key) || is_protected(&key) { | ||
if key == HeaderDef::ChatDispositionNotificationTo.get_headername() { | ||
match addrparse_header(field) { | ||
Ok(addrlist) => { | ||
|
@@ -1966,23 +1952,26 @@ pub(crate) fn parse_message_id(ids: &str) -> Result<String> { | |
|
||
/// Returns true if the header overwrites outer header | ||
/// when it comes from protected headers. | ||
fn is_known(key: &str) -> bool { | ||
matches!( | ||
key, | ||
"return-path" | ||
| "date" | ||
| "from" | ||
| "sender" | ||
| "reply-to" | ||
| "to" | ||
| "cc" | ||
| "bcc" | ||
| "message-id" | ||
| "in-reply-to" | ||
| "references" | ||
| "subject" | ||
| "secure-join" | ||
) | ||
fn is_protected(key: &str) -> bool { | ||
key.starts_with("chat-") | ||
|| matches!( | ||
key, | ||
"return-path" | ||
| "auto-submitted" | ||
| "autocrypt-setup-message" | ||
| "date" | ||
| "from" | ||
| "sender" | ||
| "reply-to" | ||
| "to" | ||
| "cc" | ||
| "bcc" | ||
| "message-id" | ||
| "in-reply-to" | ||
| "references" | ||
| "subject" | ||
| "secure-join" | ||
) | ||
} | ||
|
||
/// Returns if the header is hidden and must be ignored in the IMF section. | ||
|
Uh oh!
There was an error while loading. Please reload this page.