@mxraven/mail - v0.2.0
    Preparing search index...

    Interface Verdicts

    Spam and malware scan results.

    interface Verdicts {
        action: string;
        error: string;
        has_malware: boolean;
        is_skipped: boolean;
        is_spam: boolean;
        malware_names: readonly string[];
        required_score: number;
        score: number;
    }
    Index
    action: string

    The scanner action description.

    error: string

    The scanner error, when scanning failed.

    has_malware: boolean

    Whether malware was detected.

    is_skipped: boolean

    Whether scanning was skipped.

    is_spam: boolean

    Whether the message was classified as spam.

    malware_names: readonly string[]

    The detected malware signatures.

    required_score: number

    The threshold the message was compared against.

    score: number

    The spam score that was assigned.