@bobfrankston/rmfmail 1.2.288 → 1.2.289
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/.commitmsg +12 -29
- package/client/android-bootstrap.bundle.js +1 -0
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +2 -1
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-viewer.js +9 -1
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +10 -2
- package/npmchanges.md +32 -0
- package/package.json +7 -7
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-types/package.json +1 -1
- package/packages/mailx-types/trust.d.ts +7 -1
- package/packages/mailx-types/trust.d.ts.map +1 -1
- package/packages/mailx-types/trust.js +1 -0
- package/packages/mailx-types/trust.js.map +1 -1
- package/packages/mailx-types/trust.ts +8 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-39836 → node_modules.npmglobalize-stash-53712}/.package-lock.json +0 -0
package/.commitmsg
CHANGED
|
@@ -1,29 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
ALL_TRUSTED Passed through trusted hosts only via SMTP
|
|
15
|
-
DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain
|
|
16
|
-
|
|
17
|
-
DKIM_VALID_AU is the same evidence DMARC alignment rests on — the author
|
|
18
|
-
domain signed it and the signature verified — so it proves the From line on
|
|
19
|
-
its own. ALL_TRUSTED says nothing untrusted handled the message in transit.
|
|
20
|
-
`proved` now comes from any of the three, and `provedBy` names which, so the
|
|
21
|
-
banner says WHICH proof rather than asserting DMARC that isn't there. His
|
|
22
|
-
message is now a grey note: "…but bob.ma proved it sent this. Valid signature
|
|
23
|
-
from bob.ma, the sending domain itself (DKIM_VALID_AU)."
|
|
24
|
-
|
|
25
|
-
Forgery still outranks proof — across the store the danger count is unchanged
|
|
26
|
-
at 294 of 1,131 flagged; caution 599, quiet 238.
|
|
27
|
-
|
|
28
|
-
Also: the Insert menu gains Blockquote and Quoted text (paste) — rmf-tiny
|
|
29
|
-
0.1.53, see its .commitmsg.
|
|
1
|
+
The spam chip has to name the proof it actually has
|
|
2
|
+
|
|
3
|
+
Follow-up to v1.2.288, caught by looking at the rendered chip on Bob's own
|
|
4
|
+
message: the banner correctly said "Valid signature from bob.ma (DKIM_VALID_AU)"
|
|
5
|
+
while the chip's tooltip underneath asserted "the sending domain passed DMARC"
|
|
6
|
+
— on a message that carries no Authentication-Results header at all. A claim
|
|
7
|
+
the reader cannot check is exactly what this whole change set exists to remove.
|
|
8
|
+
|
|
9
|
+
`SpamScore` now carries `provedBy` alongside `proved`, and the chip's tooltip
|
|
10
|
+
says which of the three proofs applied: the server's DMARC verdict, a valid
|
|
11
|
+
signature from the sending domain, or never having passed through an untrusted
|
|
12
|
+
host.
|