Score:
{rspamd.score.toFixed(2)} / {rspamd.threshold.toFixed(1)}
Classified as:
{rspamd.is_spam ? "SPAM" : "HAM"}
Action:
{effectiveAction.label}
{#if rspamd.symbols && Object.keys(rspamd.symbols).length > 0}
| Symbol |
Score |
Parameters |
{#each Object.entries(rspamd.symbols).sort(([, a], [, b]) => b.score - a.score) as [symbolName, symbol]}
0
? "table-warning"
: symbol.score < 0
? "table-success"
: ""}
>
| {symbolName} |
0
? "text-danger fw-bold"
: symbol.score < 0
? "text-success fw-bold"
: "text-muted"}
>
{symbol.score > 0 ? "+" : ""}{symbol.score.toFixed(2)}
|
{symbol.params ?? ""} |
{/each}
{/if}