pai
    Preparing search index...

    Type Alias MailConfig

    A saved mailbox login, as mail setup writes it.

    type MailConfig = {
        from?: string;
        imap: MailServer;
        pass: string;
        smtp: MailServer;
        user: string;
    }
    Index
    from?: string

    The From address. Default: user.

    The server pai reads mail from.

    pass: string

    The account's password, or an app password.

    The server pai sends mail through.

    user: string

    The account's address, used to log in.