ts-mailcow-api
    Preparing search index...

    Interface Domain

    Interface of the Domain as returned by Mailcow.

    interface Domain {
        active: number;
        active_int: number;
        aliases_in_domain: number;
        aliases_left: number;
        backupmx?: boolean;
        bytes_total?: number;
        def_new_mailbox_quota?: number;
        def_quota_for_mbox?: number;
        description: string;
        domain_admins: string[];
        domain_name: string;
        gal: boolean;
        gal_int: number;
        max_new_mailbox_quota?: string;
        max_num_aliases_for_domain?: number;
        max_num_mboxes_for_domain: number;
        max_quota_for_domain: number;
        max_quota_for_mbox: number;
        mboxes_in_domain: number;
        mboxes_left: number;
        msgs_total: number;
        quota_used_in_domain: number;
        relay_all_recipients?: boolean;
        relay_all_recipients_int: boolean;
        relay_unknown_only: boolean;
        relay_unknown_only_int: boolean;
        relayhost?: number;
        rl: boolean | { frame: string; value: string };
        xmpp: boolean;
        xmpp_prefix: string;
    }
    Index

    Properties

    active: number

    0 = False, 1 = True.

    active_int: number

    Integer representation of the boolean.

    aliases_in_domain: number

    Amount of aliases in this domain.

    aliases_left: number

    Amount of aliases remaining in the alias quota.

    backupmx?: boolean

    If backupmx is activated.

    bytes_total?: number

    Total amount of bytes used by this domain.

    def_new_mailbox_quota?: number

    New mailbox quota.

    def_quota_for_mbox?: number

    Quota for a mailbox.

    description: string

    Description of the domain.

    domain_admins: string[]

    List of domain admins

    domain_name: string

    Name of the domain.

    gal: boolean

    Is domain global address list active or not, it enables shared contacts across domain in SOGo webmail

    gal_int: number

    Integer representation of the boolean.

    max_new_mailbox_quota?: string

    Max quota for new mailboxes.

    max_num_aliases_for_domain?: number

    Max quota aliases on this domain.

    max_num_mboxes_for_domain: number

    Max number of mailboxes in this domain.

    max_quota_for_domain: number

    Max quota for this domain.

    max_quota_for_mbox: number

    Max quota for a mailbox.

    mboxes_in_domain: number

    Amount of mailboxes in this domain.

    mboxes_left: number

    Amount of mailboxes left in the quota.

    msgs_total: number

    Amount of total messages in this domain.

    quota_used_in_domain: number

    Quota used in this domain.

    relay_all_recipients?: boolean

    If all mails are relayed.

    relay_all_recipients_int: boolean

    Integer representation of the boolean.

    relay_unknown_only: boolean

    If the domain should only relay unknown adresses.

    relay_unknown_only_int: boolean

    Integer representation of the boolean.

    relayhost?: number

    Id of the relay host

    rl: boolean | { frame: string; value: string }

    If the domain is relayed.

    xmpp: boolean

    If XMPP is enable.d

    xmpp_prefix: string

    The XMPP prefix.