@bobfrankston/mailx-store 0.1.123 → 0.1.126
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 +2 -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.126",
|
|
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.100",
|
|
13
|
+
"@bobfrankston/mailx-settings": "^0.1.91",
|
|
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.100",
|
|
33
|
+
"@bobfrankston/mailx-settings": "^0.1.91",
|
|
34
34
|
"@bobfrankston/mailx-bus": "^0.1.2",
|
|
35
35
|
"mailparser": "^3.7.2"
|
|
36
36
|
}
|
package/store.js
CHANGED
|
@@ -581,6 +581,8 @@ export class Store {
|
|
|
581
581
|
// Mailing lists the reader subscribes to, by List-Id; counts only
|
|
582
582
|
// when the server proved the list's host sent the message (2026-09-09).
|
|
583
583
|
trustedLists: (allowList.trustedLists || []).map((l) => (l || "").toLowerCase()),
|
|
584
|
+
// "‹sender› via ‹relay›" pairs; count only when the relay signed (2026-09-10).
|
|
585
|
+
trustedSendersVia: (allowList.trustedSendersVia || []).map((v) => (v || "").toLowerCase()),
|
|
584
586
|
};
|
|
585
587
|
const trust = assessMessageTrust(trustInput);
|
|
586
588
|
// The server's score travels separately from the findings: a finding is
|