@bobfrankston/mailx-store 0.1.118 → 0.1.121
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/package.json +5 -5
- package/store.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-store",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.121",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"license": "ISC",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@bobfrankston/mailx-types": "^0.1.
|
|
13
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
12
|
+
"@bobfrankston/mailx-types": "^0.1.92",
|
|
13
|
+
"@bobfrankston/mailx-settings": "^0.1.85",
|
|
14
14
|
"@bobfrankston/mailx-bus": "^0.1.2",
|
|
15
15
|
"mailparser": "^3.7.2"
|
|
16
16
|
},
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
".transformedSnapshot": {
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@bobfrankston/mailx-types": "^0.1.
|
|
33
|
-
"@bobfrankston/mailx-settings": "^0.1.
|
|
32
|
+
"@bobfrankston/mailx-types": "^0.1.92",
|
|
33
|
+
"@bobfrankston/mailx-settings": "^0.1.85",
|
|
34
34
|
"@bobfrankston/mailx-bus": "^0.1.2",
|
|
35
35
|
"mailparser": "^3.7.2"
|
|
36
36
|
}
|
package/store.js
CHANGED
|
@@ -578,6 +578,9 @@ export class Store {
|
|
|
578
578
|
// Services the reader trusts to relay on others' behalf; counts
|
|
579
579
|
// only when the service provably handled the message (2026-09-08).
|
|
580
580
|
trustedIntermediaries: (allowList.trustedIntermediaries || []).map((d) => (d || "").toLowerCase()),
|
|
581
|
+
// Mailing lists the reader subscribes to, by List-Id; counts only
|
|
582
|
+
// when the server proved the list's host sent the message (2026-09-09).
|
|
583
|
+
trustedLists: (allowList.trustedLists || []).map((l) => (l || "").toLowerCase()),
|
|
581
584
|
};
|
|
582
585
|
const trust = assessMessageTrust(trustInput);
|
|
583
586
|
// The server's score travels separately from the findings: a finding is
|