edgeport - v1.0.3
    Preparing search index...

    Interface ImapFetchFields

    Selects which parts of each message ImapSession.fetch requests.

    interface ImapFetchFields {
        body?: boolean;
        envelope?: boolean;
        flags?: boolean;
        size?: boolean;
    }
    Index
    body?: boolean

    Request the full body via BODY.PEEK[].

    envelope?: boolean

    Request ENVELOPE (parsed here into headers from the fetched body).

    flags?: boolean

    Request FLAGS.

    size?: boolean

    Request RFC822.SIZE.