UNPKG

@cull/imap

Version:

A simple, configurable javascript interface exposing mailboxes and messages via IMAP.

13 lines (12 loc) 289 B
/** * __An Electronic Mail Message__ * @link https://tools.ietf.org/html/rfc3501#section-2.3 * @link https://tools.ietf.org/html/rfc2822 * @link https://tools.ietf.org/html/rfc2045 */ export class Message { constructor() { this.flags = []; } } export default Message;