ts-mailcow-api
    Preparing search index...

    Interface TlsPolicyMap

    Represents a TLS Policy Map entry returned by the Mailcow API.

    interface TlsPolicyMap {
        active: string;
        created: string;
        dest: string;
        id: number;
        modified: string;
        parameters: string;
        policy: string;
    }
    Index

    Properties

    active: string

    Indicates if the TLS policy map entry is active ("1" for yes, "0" for no).

    created: string

    Creation timestamp of the TLS policy map entry.

    dest: string

    The target domain or email address for the TLS policy.

    id: number

    Unique identifier of the TLS policy map entry.

    modified: string

    Last modified timestamp, or null if never modified.

    parameters: string

    Custom parameters for the TLS policy.

    policy: string

    The policy applied to the target domain or email.