ts-mailcow-api
    Preparing search index...

    Interface QuarantineItem

    Represents a single quarantined email item returned by the Mailcow API.

    interface QuarantineItem {
        created: number;
        id: number;
        notified: number;
        qid: string;
        rcpt: string;
        score: number;
        sender: string;
        subject: string;
        virus_flag: number;
    }
    Index

    Properties

    created: number

    Timestamp when the email was quarantined.

    id: number

    Unique identifier of the quarantined email item.

    notified: number

    Indicates whether a notification has been sent. 1 for yes, 0 for no.

    qid: string

    Queue ID of the email.

    rcpt: string

    Recipient email address.

    score: number

    Spam score of the email.

    sender: string

    Sender email address.

    subject: string

    Subject of the quarantined email.

    virus_flag: number

    Flag indicating presence of a virus. 1 for yes, 0 for no.