edgeport - v1.0.3
    Preparing search index...

    Interface ImapSearch

    A search query, translated to IMAP SEARCH criteria.

    interface ImapSearch {
        all?: boolean;
        from?: string;
        since?: Date;
        subject?: string;
        unseen?: boolean;
    }
    Index
    all?: boolean

    Match every message (the ALL key).

    from?: string

    Match messages whose From header contains this substring.

    since?: Date

    Match messages whose internal date is on or after this date.

    subject?: string

    Match messages whose Subject header contains this substring.

    unseen?: boolean

    Match unseen messages only.