@bobfrankston/rmfmail 1.2.313 → 1.2.314
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 +24 -19
- package/.llm/trusted-lists.md +1 -1
- package/client/android-bootstrap.bundle.js +2 -0
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +7 -0
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-viewer.js +16 -0
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +16 -0
- package/npmchanges.md +25 -0
- package/package.json +1 -1
- package/packages/mailx-types/trust.d.ts.map +1 -1
- package/packages/mailx-types/trust.js +13 -0
- package/packages/mailx-types/trust.js.map +1 -1
- package/packages/mailx-types/trust.ts +41 -0
package/client/app.bundle.js
CHANGED
|
@@ -3260,6 +3260,13 @@ Delivered by the ${spam.listId} mailing list, which your server proved sent it.
|
|
|
3260
3260
|
warn.appendChild(actions);
|
|
3261
3261
|
}
|
|
3262
3262
|
const lists = worst === "danger" ? [] : Array.from(new Set(trust.map((f) => f.list).filter(Boolean)));
|
|
3263
|
+
const listSpam = msg.spamScore;
|
|
3264
|
+
if (worst === "danger" && listSpam?.listProved && listSpam.listId) {
|
|
3265
|
+
const note = document.createElement("div");
|
|
3266
|
+
note.className = "mv-trust-foot";
|
|
3267
|
+
note.textContent = listSpam.listTrusted ? `Delivered by the ${listSpam.listId} mailing list, which you trust \u2014 that does not clear this finding.` : `Delivered by the ${listSpam.listId} mailing list. Trusting the list (right-click the From address) would not clear this finding.`;
|
|
3268
|
+
warn.appendChild(note);
|
|
3269
|
+
}
|
|
3263
3270
|
if (lists.length) {
|
|
3264
3271
|
const actions = document.createElement("div");
|
|
3265
3272
|
actions.className = "mv-trust-actions";
|