edgeport - v1.0.3
    Preparing search index...

    Interface Pop3ConnectOptions

    Options for connect and retrieveAll.

    interface Pop3ConnectOptions {
        auth: { password: string; username: string };
        hostname: string;
        port?: number;
        timeoutMs?: number;
        tls?: "off" | "starttls" | "implicit";
    }
    Index
    auth: { password: string; username: string }

    Login credentials sent via the USER/PASS commands.

    hostname: string

    Remote POP3 host.

    port?: number

    Remote port; defaults to 995 (implicit TLS).

    timeoutMs?: number

    Per-operation read deadline in milliseconds.

    tls?: "off" | "starttls" | "implicit"

    Transport security:

    • 'implicit' (default): TLS from the first byte (POP3S, port 995).
    • 'starttls': plaintext, upgraded with the STLS command (port 110).
    • 'off': plaintext with no upgrade (trusted internal / dev servers).