ts-mailcow-api
    Preparing search index...

    Interface CreateTransportMapRequest

    Request payload to create a Transport Map.

    interface CreateTransportMapRequest {
        active: number;
        destination: string;
        nexthop: string;
        password: string;
        username: string;
    }
    Index

    Properties

    active: number

    Indicates if the transport map is active (1 for active, 0 for disabled).

    destination: string

    The destination domain for the transport map.

    nexthop: string

    The next hop for the transport map.

    password: string

    The password for the SMTP user.

    username: string

    The username used to authenticate with the SMTP server.