Creating Plot Twists
    Preparing search index...

    Type Alias ImapConnectOptions

    Credentials and server info for connecting to an IMAP server.

    type ImapConnectOptions = {
        host: string;
        port: number;
        tls: boolean;
        username: string;
        password: string;
    }
    Index

    Properties

    host: string

    IMAP server hostname (e.g. "imap.mail.me.com")

    port: number

    IMAP server port (e.g. 993 for TLS)

    tls: boolean

    Whether to use TLS (true for port 993)

    username: string

    IMAP username (typically the email address)

    password: string

    IMAP password (app-specific password for Apple)