@bobfrankston/mailx-settings 0.1.66 → 0.1.68
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/docs/spam-false-positives.md +34 -0
- package/package.json +3 -3
|
@@ -206,3 +206,37 @@ notes. All four samples above are quiet or neutral; the 2026-08-25 phishes stay
|
|
|
206
206
|
|
|
207
207
|
Still open (C165): sender trust via `allowlist.jsonc`, the inline trust action on the
|
|
208
208
|
banner, and the three design questions in the section above.
|
|
209
|
+
|
|
210
|
+
## Follow-ups, 2026-08-27 evening
|
|
211
|
+
|
|
212
|
+
**Proof of the From line has three sources, not one** (v1.2.288). Bob: "why is my own
|
|
213
|
+
mail spam". His reply to John Levine about spam handling carried NO
|
|
214
|
+
`Authentication-Results` header — his own authenticated submission never crossed a trust
|
|
215
|
+
boundary, so nothing wrote one — and fell through to a caution banner telling him not to
|
|
216
|
+
open the links in prose he had just written. What scored it was `URIBL_DBL_SPAM` 8.0 on
|
|
217
|
+
**blueorchestra.org: the domain he was quoting, in a discussion about spam.**
|
|
218
|
+
|
|
219
|
+
SpamAssassin states two proofs in its own rule list that such mail carries instead:
|
|
220
|
+
|
|
221
|
+
* -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP
|
|
222
|
+
* -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain
|
|
223
|
+
|
|
224
|
+
`DKIM_VALID_AU` is the same evidence DMARC alignment rests on. `ALL_TRUSTED` says nothing
|
|
225
|
+
untrusted handled the message in transit. `proved` now accepts any of the three and
|
|
226
|
+
`provedBy` names which, so the banner (and the chip's tooltip, v1.2.289) says WHICH proof
|
|
227
|
+
rather than asserting a DMARC pass that is not in the headers. Distribution over the same
|
|
228
|
+
20,307 messages: danger unchanged at 294, caution 599, quiet 238.
|
|
229
|
+
|
|
230
|
+
**John Levine, on the same thread, confirming the sender-trust direction:**
|
|
231
|
+
|
|
232
|
+
> `* 3.0 DCC_CHECK Detected as bulk mail by DCC` — This means it's bulk mail, other people
|
|
233
|
+
> have seen at least 20 messages like it. You have to whitelist the senders if you want to
|
|
234
|
+
> keep them out of the spam folder. I have my own whitelist but I haven't tried to do a
|
|
235
|
+
> global one because everyone's different. You may like mail from actblue, but the mail
|
|
236
|
+
> they send to my father is spam because he's been dead for seven years.
|
|
237
|
+
|
|
238
|
+
That is the argument for (7) and against any shared or tuned list: bulk is a fact about
|
|
239
|
+
the mail, wanted is a fact about the reader. It also rules out server-side whitelisting as
|
|
240
|
+
the answer for Bob specifically — he whitelists `@bob.ma` at the server and says "that
|
|
241
|
+
gets abused", which is what forging his own domain buys an attacker. The client-side list
|
|
242
|
+
must key on evidence (DKIM-verified domain, Delivered-To tag) rather than on the From line.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-settings",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.68",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@bobfrankston/mailx-types": "^0.1.
|
|
20
|
+
"@bobfrankston/mailx-types": "^0.1.71",
|
|
21
21
|
"jsonc-parser": "^3.3.1"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
".transformedSnapshot": {
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@bobfrankston/mailx-types": "^0.1.
|
|
36
|
+
"@bobfrankston/mailx-types": "^0.1.71",
|
|
37
37
|
"jsonc-parser": "^3.3.1"
|
|
38
38
|
}
|
|
39
39
|
}
|