Skip to content

Commit c63266c

Browse files
committed
feat: Do not copy Auto-Submitted header into outer part
Before, copying Auto-Submitted to the outer headers was needed for moving such messages, e.g. multi-device sync messages, to the DeltaChat folder. Now all encrypted messages are moved.
1 parent 22da92c commit c63266c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mimefactory.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ impl MimeFactory {
10621062
mail_builder::headers::raw::Raw::new("[...]").into(),
10631063
));
10641064
}
1065-
"in-reply-to" | "references" | "auto-submitted" | "autocrypt-setup-message" => {
1065+
"in-reply-to" | "references" | "autocrypt-setup-message" => {
10661066
unprotected_headers.push(header.clone());
10671067
}
10681068
_ => {

0 commit comments

Comments
 (0)