@bobfrankston/rmfmail 1.2.290 → 1.2.291

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.
@@ -3108,7 +3108,7 @@ async function showMessage(accountId, uid, folderId, specialUse, isRetry = false
3108
3108
  }
3109
3109
  bodyEl.innerHTML = "";
3110
3110
  const spam = msg.spamScore;
3111
- if (spam && Number.isFinite(spam.score) && (spam.flagged || spam.score >= spam.threshold / 2)) {
3111
+ if (spam && !spam.trusted && Number.isFinite(spam.score) && (spam.flagged || spam.score >= spam.threshold / 2)) {
3112
3112
  const benign = !!spam.proved || spam.kind === "bulk";
3113
3113
  const level = benign ? "bulk" : spam.flagged ? "high" : "mid";
3114
3114
  const chip = document.createElement("div");