@bobfrankston/rmfmail 1.2.288 → 1.2.290
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 +34 -24
- package/TODO.md +1 -1
- package/client/android-bootstrap.bundle.js +25 -3
- 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/docs/spam-false-positives.md +34 -0
- package/npmchanges.md +47 -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/docs/spam-false-positives.md +34 -0
- 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 +33 -1
- package/packages/mailx-types/trust.js.map +1 -1
- package/packages/mailx-types/trust.ts +41 -2
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-39836 → node_modules.npmglobalize-stash-27100}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -3114,7 +3114,8 @@ async function showMessage(accountId, uid, folderId, specialUse, isRetry = false
|
|
|
3114
3114
|
const chip = document.createElement("div");
|
|
3115
3115
|
chip.className = `mv-spamscore mv-spamscore-${level}`;
|
|
3116
3116
|
const why = (spam.reasons || []).length ? "\n\n" + spam.reasons.join("\n") : "";
|
|
3117
|
-
|
|
3117
|
+
const provedNote = spam.provedBy === "dkim" ? "the sending domain signed it and the signature verified" : spam.provedBy === "trusted" ? "it never passed through an untrusted host" : "the sending domain passed DMARC";
|
|
3118
|
+
chip.title = (level === "bulk" ? spam.proved ? `Scored by bulk-mail or blocklist rules; ${provedNote}, so the sender is proved.` : "Every rule that scored is a bulk-mail test \u2014 none of them test who sent this." : level === "high" ? "Your mail server scored this at or above its spam threshold and flagged it." : "Below your server's spam threshold, but more than halfway to it.") + why;
|
|
3118
3119
|
chip.textContent = `spam score ${spam.score} of ${spam.threshold}`;
|
|
3119
3120
|
bodyEl.appendChild(chip);
|
|
3120
3121
|
}
|