@bobfrankston/mailx-store 0.1.37 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db.d.ts +8 -1
- package/db.js +11 -2
- package/package.json +3 -3
- package/store.d.ts +5 -0
- package/store.js +3 -1
package/db.d.ts
CHANGED
|
@@ -294,7 +294,14 @@ export declare class MailxDB {
|
|
|
294
294
|
* is stable. Use this as the identity in any long-lived reference
|
|
295
295
|
* (compose in-reply-to, dally, undo stacks). */
|
|
296
296
|
getMessageByUuid(uuid: string): MessageEnvelope;
|
|
297
|
-
|
|
297
|
+
/** Look up a message's body_path. folderId is REQUIRED when available
|
|
298
|
+
* because (account, uid) is not a unique key — the same numeric UID
|
|
299
|
+
* refers to different messages in INBOX vs Outbox vs Sent etc. Passing
|
|
300
|
+
* no folderId returns the first matching row, which may be the wrong
|
|
301
|
+
* message's body — same class of bug as the parsedCache UID collision.
|
|
302
|
+
* Existing callers without folderId are tolerated (legacy) but should
|
|
303
|
+
* be migrated. */
|
|
304
|
+
getMessageBodyPath(accountId: string, uid: number, folderId?: number): string;
|
|
298
305
|
updateMessageFlags(accountId: string, uid: number, flags: string[]): void;
|
|
299
306
|
updateMessageFolder(accountId: string, uid: number, targetFolderId: number): void;
|
|
300
307
|
/** Local-first move of a message between folders. Updates BOTH the
|
package/db.js
CHANGED
|
@@ -1802,8 +1802,17 @@ export class MailxDB {
|
|
|
1802
1802
|
return null;
|
|
1803
1803
|
return this.rowToEnvelope(r);
|
|
1804
1804
|
}
|
|
1805
|
-
|
|
1806
|
-
|
|
1805
|
+
/** Look up a message's body_path. folderId is REQUIRED when available
|
|
1806
|
+
* because (account, uid) is not a unique key — the same numeric UID
|
|
1807
|
+
* refers to different messages in INBOX vs Outbox vs Sent etc. Passing
|
|
1808
|
+
* no folderId returns the first matching row, which may be the wrong
|
|
1809
|
+
* message's body — same class of bug as the parsedCache UID collision.
|
|
1810
|
+
* Existing callers without folderId are tolerated (legacy) but should
|
|
1811
|
+
* be migrated. */
|
|
1812
|
+
getMessageBodyPath(accountId, uid, folderId) {
|
|
1813
|
+
const r = folderId != null
|
|
1814
|
+
? this.db.prepare("SELECT body_path FROM messages WHERE account_id = ? AND folder_id = ? AND uid = ?").get(accountId, folderId, uid)
|
|
1815
|
+
: this.db.prepare("SELECT body_path FROM messages WHERE account_id = ? AND uid = ?").get(accountId, uid);
|
|
1807
1816
|
return r?.body_path || "";
|
|
1808
1817
|
}
|
|
1809
1818
|
updateMessageFlags(accountId, uid, flags) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-store",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.39",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@bobfrankston/mailx-types": "^0.1.18",
|
|
13
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
13
|
+
"@bobfrankston/mailx-settings": "^0.1.25",
|
|
14
14
|
"@bobfrankston/mailx-bus": "^0.1.2",
|
|
15
15
|
"mailparser": "^3.7.2"
|
|
16
16
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
".transformedSnapshot": {
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@bobfrankston/mailx-types": "^0.1.18",
|
|
33
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
33
|
+
"@bobfrankston/mailx-settings": "^0.1.25",
|
|
34
34
|
"@bobfrankston/mailx-bus": "^0.1.2",
|
|
35
35
|
"mailparser": "^3.7.2"
|
|
36
36
|
}
|
package/store.d.ts
CHANGED
|
@@ -58,6 +58,11 @@ export interface StoreMessage extends MessageEnvelope {
|
|
|
58
58
|
listUnsubscribeOneClick: boolean;
|
|
59
59
|
emlPath: string;
|
|
60
60
|
isFlagged: boolean;
|
|
61
|
+
/** X-Mailx-Draft-ID header value (empty for non-draft messages). When
|
|
62
|
+
* the user re-opens a draft for edit, the compose layer threads this
|
|
63
|
+
* back into saveDraft so the server-side dedup keeps replacing the
|
|
64
|
+
* same draft instead of stacking up a new one every save. */
|
|
65
|
+
mailxDraftId: string;
|
|
61
66
|
}
|
|
62
67
|
export declare class Store {
|
|
63
68
|
/** SQLite metadata index. Exposed as a public field — sync clients
|
package/store.js
CHANGED
|
@@ -224,7 +224,7 @@ export class Store {
|
|
|
224
224
|
// the historical lookup. Either may be empty (body never fetched).
|
|
225
225
|
let storedPath = envelope.bodyPath || "";
|
|
226
226
|
if (!storedPath)
|
|
227
|
-
storedPath = this.db.getMessageBodyPath(accountId, uid) || "";
|
|
227
|
+
storedPath = this.db.getMessageBodyPath(accountId, uid, folderId) || "";
|
|
228
228
|
const empty = {
|
|
229
229
|
...envelope,
|
|
230
230
|
bodyHtml: "", bodyText: "",
|
|
@@ -400,6 +400,7 @@ export class Store {
|
|
|
400
400
|
return String(v);
|
|
401
401
|
};
|
|
402
402
|
const returnPath = hdr("return-path").replace(/[<>]/g, "");
|
|
403
|
+
const mailxDraftId = hdr("x-mailx-draft-id").trim();
|
|
403
404
|
const { listUnsubscribeMail, listUnsubscribeHttp, listUnsubscribeOneClick } = parseListUnsubscribe(parsed.headers);
|
|
404
405
|
const listUnsubscribe = listUnsubscribeHttp || listUnsubscribeMail;
|
|
405
406
|
const result = {
|
|
@@ -416,6 +417,7 @@ export class Store {
|
|
|
416
417
|
// basePath every time.
|
|
417
418
|
emlPath: this.bodyStore.absolutePath(storedPath),
|
|
418
419
|
isFlagged,
|
|
420
|
+
mailxDraftId,
|
|
419
421
|
};
|
|
420
422
|
// Memoize for instant re-view of the same message. cacheKey is
|
|
421
423
|
// path+mtime so a re-fetch (mtime changes) invalidates naturally.
|