aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.h
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-06 15:26:31 +0200
committerDanilo M. <danix@danix.xyz>2026-09-06 15:26:31 +0200
commit51b8fd5708d23108d532be1cf38e4bb619eeb777 (patch)
tree1f98bee2bf6da1950ae8958eaff737bfbf8d317b /src/types.h
parentc896eaf84b8b784622fd21380cf8d7f6d51028b2 (diff)
downloadqtmaildir-51b8fd5708d23108d532be1cf38e4bb619eeb777.tar.gz
qtmaildir-51b8fd5708d23108d532be1cf38e4bb619eeb777.zip
fix: keep one Message-ID across a draft's revisions
Every autosave called MessageBuilder::build(), which generated a fresh Message-ID unconditionally, so each revision of a draft was a different message rather than a new version of one. The entry called this invisible while the file is replaced correctly, and that turned out to be wrong: mbsync uploads each revision to the drafts folder before the next save removes the local file, so the server keeps one message per revision and syncs them all back down. Measured on real mail as four independent messages for a single reply, all four carrying a ,U= infix, threading into the conversation and putting a draft tag on a Sent row. Deleting a local file does not retract an uploaded one, which is why the local cleanup, which is correct, could never fix it. The user chose a stable id while drafting, discarded at send: the sent copy is a different item from the draft, and the draft is deleted once the message goes out, which the code already did. Three links, none of which existed. OutgoingMessage::messageId is the field, where empty means generate, so the send path is unchanged by construction rather than by remembering to clear it. MessageBuilder::build() uses a supplied id when there is one. ComposeWindow::m_draftMessageId holds the identity between revisions, assigned from built.messageId so the first save adopts the id GMime just generated, and ComposeContext::draftMessageId carries it across a reopen, read in forDraft() from ParsedMessage::messageId, which the parser already provided and nothing had ever used. Five tests, because the property spans three objects and a test at any one of them passes while another link is broken. Two are the safety constraint rather than the feature: a field defaulting to a fixed value would satisfy the reuse test and make two sent messages share an id, which is far worse than the defect this fixes. One comment is corrected rather than left: the autosave's dirty check justified comparing the message rather than the built bytes with "GMime is given a fresh Date and Message-ID on every build". Half of that is no longer true. The Date still is, so the conclusion stands. Revisions already on the server are not touched by this; the four found on real mail were deleted by hand. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Jq9gXquUo9W4KXDagJXMmn
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h
index ee2627f..fb7901c 100644
--- a/src/types.h
+++ b/src/types.h
@@ -352,6 +352,15 @@ struct ComposeContext
/// to make room. It is the message itself.
QString body;
+ /// The Message-ID the resumed draft already has, empty for every other
+ /// kind.
+ ///
+ /// Item 165. Seeded into ComposeWindow::m_draftMessageId so a reopened
+ /// draft keeps the identity it was saved under instead of starting a
+ /// second one on its next autosave. Distinct from `inReplyTo`, which is
+ /// the ORIGINAL's id when the draft is a reply; this is the draft's own.
+ QString draftMessageId;
+
/// The draft file this composer OWNS, empty for every other kind.
///
/// Seeded into ComposeWindow::m_draftPath so the next autosave REPLACES
@@ -379,6 +388,24 @@ struct OutgoingMessage
QString inReplyTo;
QStringList references;
+ /// The Message-ID to build under, or empty to mint a fresh one.
+ ///
+ /// Item 165. A draft keeps ONE identity across its revisions, so an
+ /// autosave replaces the message it wrote last time instead of adding
+ /// another. Every save used to generate a new id, and mbsync uploads each
+ /// revision to the drafts folder before the next save removes the local
+ /// file, so the server ended up holding one message per revision:
+ /// measured as four for a single reply on the user's own mail. Deleting a
+ /// local file does not retract an uploaded one, which is why the local
+ /// cleanup, which is correct, could never fix this.
+ ///
+ /// **Empty on the SEND path, deliberately.** The sent copy is a different
+ /// item from the draft, at the user's own decision (item 165), and two
+ /// sent messages sharing an id would be far worse than two ids for one
+ /// draft. So this is opt-in: only ComposeWindow's autosave fills it, from
+ /// the id the previous build returned.
+ QString messageId;
+
/// Item 171. The forwarded original's HTML, already sanitised, appended to
/// the HTML alternative below the user's own text.
///