ts-mailcow-api
    Preparing search index...

    Interface QueueItem

    Queue item representation for mail in the queue.

    interface QueueItem {
        arrival_time: number;
        message_size: number;
        queue_id: string;
        queue_name: string;
        recipients: string[];
        sender: string;
    }
    Index

    Properties

    arrival_time: number

    Arrival time of mail in epoch.

    message_size: number

    Size of the message in bytes.

    queue_id: string

    The queue id.

    queue_name: string

    The queue item queue name.

    recipients: string[]

    The recipients of the mail.

    sender: string

    The sender of the mail.