mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Limit length of references header
This commit is contained in:
@@ -3680,6 +3680,9 @@ public class FragmentCompose extends FragmentBase {
|
||||
"list".equals(action) ||
|
||||
"dsn".equals(action) ||
|
||||
"participation".equals(action)) {
|
||||
// https://tools.ietf.org/html/rfc5322#section-3.6.4
|
||||
// The "References:" field will contain the contents of the parent's "References:" field (if any)
|
||||
// followed by the contents of the parent's "Message-ID:" field (if any).
|
||||
data.draft.references = (ref.references == null ? "" : ref.references + " ") + ref.msgid;
|
||||
data.draft.inreplyto = ref.msgid;
|
||||
data.draft.thread = ref.thread;
|
||||
|
||||
Reference in New Issue
Block a user