@bobfrankston/rmfmail 1.2.299 → 1.2.301
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 +29 -53
- package/client/android-bootstrap.bundle.js +4 -1
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +1 -1
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-viewer.js +14 -2
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +16 -3
- package/client/compose/compose.bundle.js +3 -3
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.js +24 -6
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +22 -4
- package/npmchanges.md +100 -0
- package/package.json +5 -5
- 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 +4 -0
- package/packages/mailx-types/trust.d.ts.map +1 -1
- package/packages/mailx-types/trust.js +21 -2
- package/packages/mailx-types/trust.js.map +1 -1
- package/packages/mailx-types/trust.ts +31 -2
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-67432 → node_modules.npmglobalize-stash-69280}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -3129,7 +3129,7 @@ async function showMessage(accountId, uid, folderId, specialUse, isRetry = false
|
|
|
3129
3129
|
chip.className = `mv-spamscore mv-spamscore-${level}`;
|
|
3130
3130
|
const why = (spam.reasons || []).length ? "\n\n" + spam.reasons.join("\n") : "";
|
|
3131
3131
|
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";
|
|
3132
|
-
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;
|
|
3132
|
+
chip.title = (level === "bulk" ? spam.proved ? spam.bulkOnly ? `Scored by bulk-mail or blocklist rules; ${provedNote}, so the sender is proved.` : `${provedNote[0].toUpperCase()}${provedNote.slice(1)}, so the sender is proved. Not every rule that scored is a bulk-mail test \u2014 they are listed below.` : spam.bulkOnly ? "Every rule that scored is a bulk-mail test \u2014 none of them test who sent this." : "No forgery rule scored. The rules that did are listed below." : 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;
|
|
3133
3133
|
chip.textContent = `spam score ${spam.score} of ${spam.threshold}`;
|
|
3134
3134
|
bodyEl.appendChild(chip);
|
|
3135
3135
|
}
|