ts-mailcow-api
    Preparing search index...

    Interface Relayhost

    Represents a Relayhost entry returned by the Mailcow API.

    interface Relayhost {
        active: string;
        hostname: string;
        id: number;
        password: string;
        password_short: string;
        used_by_domains: string;
        username: string;
    }
    Index

    Properties

    active: string

    Indicates if the relayhost is active.

    hostname: string

    The hostname of the SMTP server, including port.

    id: number

    Unique identifier of the relayhost entry.

    password: string

    The SMTP user password.

    password_short: string

    Shortened version of the password for display.

    used_by_domains: string

    Domains using this relayhost.

    username: string

    The username used to authenticate with the SMTP server.