ts-mailcow-api
    Preparing search index...

    Interface TimeLimitedAlias

    A time-limited (burner) alias as returned by Mailcow.

    interface TimeLimitedAlias {
        address: string;
        created: string;
        description: string;
        goto: string;
        modified: string | null;
        permanent: string;
        validity: number;
    }
    Index
    address: string

    The generated alias address.

    created: string

    Creation timestamp.

    description: string

    Free-text description set at creation time.

    goto: string

    The mailbox this alias forwards to.

    modified: string | null

    Last modified timestamp, or null if never modified.

    permanent: string

    String indicating whether the alias never expires ("1" for yes, "0" for no).

    validity: number

    Unix timestamp after which the alias expires. Meaningless when permanent is "1".