pai
    Preparing search index...

    Type Alias MailServer

    secure is TLS from the first byte (993, 465). Otherwise STARTTLS is required, so a network that strips it gets no password; insecure, set only by mail setup --insecure for a local test server, allows plain text.

    type MailServer = {
        host: string;
        insecure?: boolean;
        port: number;
        secure: boolean;
    }
    Index
    host: string

    The server's host name.

    insecure?: boolean

    True allows a plain-text login. Set only by mail setup --insecure.

    port: number

    The server's port.

    secure: boolean

    True for TLS from the first byte. False means STARTTLS is required, unless insecure.