1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/*
* qtmaildir - a Qt6 mail client for notmuch-indexed Maildirs
* Copyright (C) 2026 Danilo M. <danix@danix.xyz>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#pragma once
#include <QString>
/// Maildir filename generation, shared by every path that writes a message
/// file: NotmuchWorker::moveMessages() and DraftStore.
///
/// A namespace rather than a class; there is no state beyond a counter.
namespace MaildirName {
/// A fresh, unique Maildir filename, preserving \p oldName's flag suffix.
///
/// A FRESH name, never a reuse. mbsync writes a `,U=<n>` infix that is
/// meaningful only within one folder, and carrying it across a folder
/// boundary produced "Maildir error: duplicate UID" on real mail. Only the
/// `:2,` flag suffix is carried, because the flags describe the message
/// rather than its position.
///
/// Pass an empty string for a message that has no previous name, which is
/// what a newly composed draft is.
QString fresh(const QString &oldName);
/// The file \p path names, or the renamed file that replaced it.
///
/// Item 163. mbsync renames an uploaded file to add its `,U=<uid>` infix, and
/// anything holding the previous name (the model's `MessageRef::filePath`, a
/// draft's `ComposeContext::draftPath`) then points at a path that no longer
/// exists. Returns \p path unchanged when it is still there, so the ordinary
/// case costs one stat and nothing else.
///
/// Matched on the UNIQUE STEM, the part before the first `,` or `:`, which
/// mbsync preserves: `<stem>:2,D` becomes `<stem>,U=5:2,D`. That is what makes
/// this safe to do by filename at all. The search is confined to the file's
/// own directory and never recurses, and an ambiguous match (more than one
/// candidate, which a correct Maildir cannot produce) yields nothing rather
/// than guessing.
///
/// Empty when there is no such file, which every caller must treat as the
/// genuine "it is gone" it is: recovering silently from a real deletion would
/// turn a reportable defect into a wrong answer.
///
/// This resolves a RENAME, not a MOVE. A file that changed folders is a
/// different question and belongs to whoever knows the message id;
/// `NotmuchWorker::moveMessages()` re-resolves that way for item 162.
QString resolveRenamed(const QString &path);
} // namespace MaildirName
|