@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.
@@ -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";