summaryrefslogtreecommitdiffstats
path: root/src/composewindow.cpp
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/composewindow.cpp
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/composewindow.cpp')
-rw-r--r--src/composewindow.cpp29
1 files changed, 24 insertions, 5 deletions
diff --git a/src/composewindow.cpp b/src/composewindow.cpp
index 7952efa..218edef 100644
--- a/src/composewindow.cpp
+++ b/src/composewindow.cpp
@@ -902,6 +902,9 @@ void ComposeWindow::seedFields()
// The draft file this composer is resuming, so the next autosave REPLACES
// it rather than writing a second one beside it.
m_draftPath = m_context.draftPath;
+ // And the identity that file already carries (item 165), so resuming does
+ // not start a second one.
+ m_draftMessageId = m_context.draftMessageId;
// New and Forward seed from [compose] send_html; Reply and Reply-all seed
// from whether the original carried a text/html part, ignoring the config
@@ -1365,7 +1368,10 @@ bool ComposeWindow::saveDraftNow()
return true;
}
- const OutgoingMessage message = currentMessage();
+ // Not const: the draft's own Message-ID is assigned below (item 165).
+ // fingerprintOf() does not read that field, so the dirty check above is
+ // unaffected by it.
+ OutgoingMessage message = currentMessage();
// The dirty CHECK, not just the flag: an unchanged message means no file
// is written and no sync is provoked. Every autosave produces a Maildir
@@ -1374,10 +1380,13 @@ bool ComposeWindow::saveDraftNow()
//
// Checked BEFORE the build, and on the message rather than on the bytes.
// The plan's draft compared built.bytes, which can never match: GMime is
- // given a fresh Date and Message-ID on every build, so two builds of an
- // unchanged message differ. That check would have read as working while
- // writing a file on every debounce. Doing it first also skips the
- // blocking build entirely for the no-change case, which is the common one.
+ // given a fresh Date on every build, so two builds of an unchanged message
+ // differ. That check would have read as working while writing a file on
+ // every debounce. Doing it first also skips the blocking build entirely
+ // for the no-change case, which is the common one.
+ //
+ // The Message-ID is no longer part of that difference since item 165, but
+ // the Date still is, so comparing bytes remains wrong.
const QString fingerprint = fingerprintOf(message);
if (!m_savedFingerprint.isEmpty() && fingerprint == m_savedFingerprint) {
setDirty(false);
@@ -1391,6 +1400,12 @@ bool ComposeWindow::saveDraftNow()
// crosses the worker boundary, and a second threading model for one call
// is worse than the stall. If someone is measuring a composer freeze, this
// line is where to look.
+ // Item 165. Every revision of this draft builds under ONE id, so a save
+ // replaces the message on the server rather than adding one. Empty on the
+ // first save of a new draft, which mints one below; seeded from the file
+ // for a resumed draft. The SEND path deliberately does not do this.
+ message.messageId = m_draftMessageId;
+
const MessageBuilder::Result built = MessageBuilder::build(message, account);
if (!built.ok()) {
m_saveFailed = true;
@@ -1426,6 +1441,10 @@ bool ComposeWindow::saveDraftNow()
}
m_draftPath = written.path;
+ // Kept for the NEXT revision (item 165). Assigned from the build rather
+ // than from m_draftMessageId so the first save adopts the id GMime just
+ // generated, which is what makes every later save a replacement.
+ m_draftMessageId = built.messageId;
m_savedFingerprint = fingerprint;
setDirty(false);
m_saveFailed = false;