ts-mailcow-api
    Preparing search index...

    Interface MailboxPostRequest

    Mailbox creation request.

    interface MailboxPostRequest {
        active: number;
        domain: string;
        force_pw_update: boolean;
        local_part: string;
        name: string;
        password: string;
        password2: string;
        quota: number;
        tls_enforce_in: boolean;
        tls_enforce_out: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    active: number

    Integer representing if the mailbox is active (allows for custom states).

    domain: string

    The domain of the mailbox.

    force_pw_update: boolean

    Boolean if the user is forced to update their password on login.

    local_part: string

    The local part of the mailbox.

    name: string

    The ull name of the mailbox user.

    password: string

    The mailbox password.

    password2: string

    The mailbox password for confirmation.

    quota: number

    The mailbox quota.

    tls_enforce_in: boolean

    Boolean if inbound email encryption is forced.

    tls_enforce_out: boolean

    Boolean if outbound email encryption is forced.