forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
imap.d.ts
342 lines (305 loc) · 22.7 KB
/
imap.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
// Type definitions for imap v0.8.14
// Project: https://www.npmjs.com/package/imap
// Definitions by: Peter Snider <https://github.com/psnider/>
// Definitions: https://github.com/psnider/DefinitelyTyped/imap
/// <reference path='../node/node.d.ts' />
declare namespace IMAP {
// The property names of these interfaces match the documentation (where type names were given).
export interface Config {
/** Username for plain-text authentication. */
user: string;
/** Password for plain-text authentication. */
password: string;
/** Base64-encoded OAuth token for OAuth authentication for servers that support it (See Andris Reinman's xoauth.js module to help generate this string). */
xoauth?: string;
/** Base64-encoded OAuth2 token for The SASL XOAUTH2 Mechanism for servers that support it (See Andris Reinman's xoauth2 module to help generate this string). */
xoauth2?: string;
/** Hostname or IP address of the IMAP server. Default: "localhost" */
host?: string;
/** Port number of the IMAP server. Default: 143 */
port?: number;
/** Perform implicit TLS connection? Default: false */
tls?: boolean;
/** Options object to pass to tls.connect() Default: (none) */
tlsOptions?: Object;
/** Set to 'always' to always attempt connection upgrades via STARTTLS, 'required' only if upgrading is required, or 'never' to never attempt upgrading. Default: 'never' */
autotls?: string;
/** Number of milliseconds to wait for a connection to be established. Default: 10000 */
connTimeout?: number;
/** Number of milliseconds to wait to be authenticated after a connection has been established. Default: 5000 */
authTimeout?: number;
/** Configures the keepalive mechanism. Set to true to enable keepalive with defaults or set to object to enable and configure keepalive behavior: Default: true */
keepalive?: any; /* boolean|KeepAlive */
/** If set, the function will be called with one argument, a string containing some debug info Default: (no debug output) */
debug?: Function;
}
export interface KeepAlive {
/** This is the interval (in milliseconds) at which NOOPs are sent and the interval at which idleInterval is checked. Default: 10000 */
interval?: number;
/** This is the interval (in milliseconds) at which an IDLE command (for servers that support IDLE) is re-sent. Default: 300000 (5 mins) */
idleInterval?: number;
/** Set to true to force use of NOOP keepalive on servers also support IDLE. Default: false */
forceNoop?: boolean;
}
// One of:
// - a single message identifier
// - a message identifier range (e.g. '2504:2507' or '*' or '2504:*')
// - an array of message identifiers
// - an array of message identifier ranges.
// type MessageSource = string | string[]
export interface Box {
/** The name of this mailbox. */
name: string;
/** True if this mailbox was opened in read-only mode. (Only available with openBox() calls) */
readOnly?: boolean;
/** True if new keywords can be added to messages in this mailbox. */
newKeywords: boolean;
/** A 32-bit number that can be used to determine if UIDs in this mailbox have changed since the last time this mailbox was opened. */
uidvalidity: number;
/** The uid that will be assigned to the next message that arrives at this mailbox. */
uidnext: number;
/** array - A list of system-defined flags applicable for this mailbox. Flags in this list but not in permFlags may be stored for the current session only. Additional server implementation-specific flags may also be available. */
flags: string[];
/** A list of flags that can be permanently added/removed to/from messages in this mailbox. */
permFlags: string[];
/** Whether or not this mailbox has persistent UIDs. This should almost always be true for modern mailboxes and should only be false for legacy mail stores where supporting persistent UIDs was not technically feasible. */
persistentUIDs: boolean;
/** Contains various message counts for this mailbox: */
messages: {
/** Total number of messages in this mailbox. */
total: number;
/** Number of messages in this mailbox having the Recent flag (this IMAP session is the first to see these messages). */
new: number;
/** (Only available with status() calls) Number of messages in this mailbox not having the Seen flag (marked as not having been read). */
unseen: number;
};
}
export interface ImapMessageBodyInfo {
/** The specifier for this body (e.g. 'TEXT', 'HEADER.FIELDS (TO FROM SUBJECT)', etc). */
which: string;
/** The size of this body in bytes. */
size: number;
}
export interface ImapMessageAttributes {
/** A 32-bit ID that uniquely identifies this message within its mailbox. */
uid: number;
/** A list of flags currently set on this message. */
flags: string[];
/** The internal server date for the message. */
date: Date;
/** The message's body structure (only set if requested with fetch()). */
struct?: any[];
/** The RFC822 message size (only set if requested with fetch()). */
size?: number;
}
/** Given in a 'message' event from ImapFetch */
export interface ImapMessage extends NodeJS.EventEmitter {
on(event: string, listener: Function): this;
on(event: 'body', listener: (stream: NodeJS.ReadableStream, info: ImapMessageBodyInfo) => void): this;
on(event: 'attributes', listener: (attrs: ImapMessageAttributes) => void): this;
on(event: 'end', listener: () => void): this;
}
export interface FetchOptions {
/** Mark message(s) as read when fetched. Default: false */
markSeen?: boolean;
/** Fetch the message structure. Default: false */
struct?: boolean;
/** Fetch the message envelope. Default: false */
envelope?: boolean;
/** Fetch the RFC822 size. Default: false */
size?: boolean;
/** Fetch modifiers defined by IMAP extensions. Default: (none) */
modifiers?: Object;
/** A string or Array of strings containing the body part section to fetch. Default: (none) Example sections: */
bodies?: string | string[];
}
/** Returned from fetch() */
export interface ImapFetch extends NodeJS.EventEmitter {
on(event: string, listener: Function): this;
on(event: 'message', listener: (message: ImapMessage, seqno: number) => void): this;
on(event: 'error', listener: (error: Error) => void): this;
once(event: string, listener: Function): this;
once(event: 'error', listener: (error: Error) => void): this;
}
export interface Folder {
/** mailbox attributes. An attribute of 'NOSELECT' indicates the mailbox cannot be opened */
attribs: string[];
/** hierarchy delimiter for accessing this mailbox's direct children. */
delimiter: string;
/** an object containing another structure similar in format to this top level, otherwise null if no children */
children: MailBoxes;
/** pointer to parent mailbox, null if at the top level */
parent: Folder;
}
export interface MailBoxes {
[name: string]: Folder;
}
export interface AppendOptions {
/** The name of the mailbox to append the message to. Default: the currently open mailbox */
mailbox?: string;
/** A single flag (e.g. 'Seen') or an array of flags (e.g. ['Seen', 'Flagged']) to append to the message. Default: (no flags) */
flags?: any; /* string|string[] */
/** What to use for message arrival date/time. Default: (current date/time) */
date?: Date;
}
export interface MessageFunctions {
/** Searches the currently open mailbox for messages using given criteria. criteria is a list describing what you want to find. For criteria types that require arguments, use an array instead of just the string criteria type name (e.g. ['FROM', '[email protected]']). Prefix criteria types with an "!" to negate.
The following message flags are valid types that do not have arguments:
ALL: void; // All messages.
ANSWERED: void; // Messages with the Answered flag set.
DELETED: void; // Messages with the Deleted flag set.
DRAFT: void; // Messages with the Draft flag set.
FLAGGED: void; // Messages with the Flagged flag set.
NEW: void; // Messages that have the Recent flag set but not the Seen flag.
SEEN: void; // Messages that have the Seen flag set.
RECENT: void; // Messages that have the Recent flag set.
OLD: void; // Messages that do not have the Recent flag set. This is functionally equivalent to "!RECENT" (as opposed to "!NEW").
UNANSWERED: void; // Messages that do not have the Answered flag set.
UNDELETED: void; // Messages that do not have the Deleted flag set.
UNDRAFT: void; // Messages that do not have the Draft flag set.
UNFLAGGED: void; // Messages that do not have the Flagged flag set.
UNSEEN: void; // Messages that do not have the Seen flag set.
The following are valid types that require string value(s):
BCC: any; // Messages that contain the specified string in the BCC field.
CC: any; // Messages that contain the specified string in the CC field.
FROM: any; // Messages that contain the specified string in the FROM field.
SUBJECT: any; // Messages that contain the specified string in the SUBJECT field.
TO: any; // Messages that contain the specified string in the TO field.
BODY: any; // Messages that contain the specified string in the message body.
TEXT: any; // Messages that contain the specified string in the header OR the message body.
KEYWORD: any; // Messages with the specified keyword set.
HEADER: any; // Requires two string values, with the first being the header name and the second being the value to search for. If this second string is empty, all messages that contain the given header name will be returned.
The following are valid types that require a string parseable by JavaScripts Date object OR a Date instance:
BEFORE: any; // Messages whose internal date (disregarding time and timezone) is earlier than the specified date.
ON: any; // Messages whose internal date (disregarding time and timezone) is within the specified date.
SINCE: any; // Messages whose internal date (disregarding time and timezone) is within or later than the specified date.
SENTBEFORE: any; // Messages whose Date header (disregarding time and timezone) is earlier than the specified date.
SENTON: any; // Messages whose Date header (disregarding time and timezone) is within the specified date.
SENTSINCE: any; // Messages whose Date header (disregarding time and timezone) is within or later than the specified date.
The following are valid types that require one Integer value:
LARGER: number; // Messages with a size larger than the specified number of bytes.
SMALLER: number; // Messages with a size smaller than the specified number of bytes.
The following are valid criterion that require one or more Integer values:
UID: any; // Messages with UIDs corresponding to the specified UID set. Ranges are permitted (e.g. '2504:2507' or '*' or '2504:*').
*/
search(criteria: any[], callback: (error: Error, uids: number[]) => void): void;
/** Fetches message(s) in the currently open mailbox; source can be a single message identifier, a message identifier range (e.g. '2504:2507' or '*' or '2504:*'), an array of message identifiers, or an array of message identifier ranges. */
fetch(source: any /* MessageSource */, options: FetchOptions): ImapFetch;
/** Copies message(s) in the currently open mailbox to another mailbox. */
copy(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void;
/** Moves message(s) in the currently open mailbox to another mailbox. Note: The message(s) in the destination mailbox will have a new message UID. */
move(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void;
/** Adds flag(s) to message(s). */
addFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void;
/** Removes flag(s) from message(s). */
delFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void;
/** Sets the flag(s) for message(s). */
setFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void;
/** Adds keyword(s) to message(s). keywords is either a single keyword or an array of keywords. */
addKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void;
/** Removes keyword(s) from message(s). keywords is either a single keyword or an array of keywords. */
delKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void;
/** Sets keyword(s) for message(s). keywords is either a single keyword or an array of keywords. */
setKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void;
/** Checks if the server supports the specified capability. */
serverSupports(capability: string): boolean;
}
export class Connection implements NodeJS.EventEmitter, MessageFunctions {
/** @constructor */
constructor(config: Config);
// from NodeJS.EventEmitter
addListener(event: string, listener: Function): this;
on(event: string, listener: Function): this;
once(event: string, listener: Function): this;
removeListener(event: string, listener: Function): this;
removeAllListeners(event?: string): this;
setMaxListeners(n: number): this;
getMaxListeners(): number;
listeners(event: string): Function[];
emit(event: string, ...args: any[]): boolean;
listenerCount(type: string): number;
// from MessageFunctions
/** Searches the currently open mailbox for messages using given criteria. criteria is a list describing what you want to find. For criteria types that require arguments, use an array instead of just the string criteria type name (e.g. ['FROM', '[email protected]']). Prefix criteria types with an "!" to negate. */
search(criteria: any[], callback: (error: Error, uids: number[]) => void): void;
/** Fetches message(s) in the currently open mailbox. */
fetch(source: any /* MessageSource */, options: FetchOptions): ImapFetch;
/** Copies message(s) in the currently open mailbox to another mailbox. */
copy(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void;
/** Moves message(s) in the currently open mailbox to another mailbox. Note: The message(s) in the destination mailbox will have a new message UID. */
move(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void;
/** Adds flag(s) to message(s). */
addFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void;
/** Removes flag(s) from message(s). */
delFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void;
/** Sets the flag(s) for message(s). */
setFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void;
/** Adds keyword(s) to message(s). keywords is either a single keyword or an array of keywords. */
addKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void;
/** Removes keyword(s) from message(s). keywords is either a single keyword or an array of keywords. */
delKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void;
/** Sets keyword(s) for message(s). keywords is either a single keyword or an array of keywords. */
setKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void;
/** Checks if the server supports the specified capability. */
serverSupports(capability: string): boolean;
/** Parses a raw header and returns an object keyed on header fields and the values are Arrays of header field values. Set disableAutoDecode to true to disable automatic decoding of MIME encoded-words that may exist in header field values. */
static parseHeader(rawHeader: string, disableAutoDecode?: boolean): {[index: string]: string[]};
/** The current state of the connection (e.g. 'disconnected', 'connected', 'authenticated'). */
state: string;
/** The (top-level) mailbox hierarchy delimiter. If the server does not support mailbox hierarchies and only a flat list, this value will be falsey. */
delimiter: string;
/** Contains information about each namespace type (if supported by the server) with the following properties: */
namespaces: {
/** Mailboxes that belong to the logged in user. */
personal: any[];
/** Mailboxes that belong to other users that the logged in user has access to. */
other: any[];
/** Mailboxes that are accessible by any logged in user. */
shared: any[];
};
/**
seq exposes the search() ... serverSupports() set of commands, but returns sequence number(s) instead of UIDs.
*/
seq: MessageFunctions;
/** Attempts to connect and authenticate with the IMAP server. */
connect(): void;
/** Closes the connection to the server after all requests in the queue have been sent. */
end(): void;
/** Immediately destroys the connection to the server. */
destroy(): void;
/** Opens a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. modifiers is used by IMAP extensions. */
openBox(mailboxName: string, callback: (error: Error, mailbox: Box) => void): void;
openBox(mailboxName: string, openReadOnly: boolean, callback: (error: Error, mailbox: Box) => void): void;
openBox(mailboxName: string, openReadOnly: boolean, modifiers: Object, callback: (error: Error, mailbox: Box) => void): void;
/** Closes the currently open mailbox. If autoExpunge is true, any messages marked as Deleted in the currently open mailbox will be removed if the mailbox was NOT opened in read-only mode. If autoExpunge is false, you disconnect, or you open another mailbox, messages marked as Deleted will NOT be removed from the currently open mailbox. */
closeBox(callback: (error: Error) => void): void;
closeBox(autoExpunge: boolean, callback: (error: Error) => void): void;
/** Creates a new mailbox on the server. mailboxName should include any necessary prefix/path. */
addBox(mailboxName: string, callback: (error: Error) => void): void;
/** Removes a specific mailbox that exists on the server. mailboxName should including any necessary prefix/path. */
delBox(mailboxName: string, callback: (error: Error) => void): void;
/** Renames a specific mailbox that exists on the server. Both oldMailboxName and newMailboxName should include any necessary prefix/path. Note: Renaming the 'INBOX' mailbox will instead cause all messages in 'INBOX' to be moved to the new mailbox. */
renameBox(oldMailboxName: string, newMailboxName: string, callback: (error: Error, mailbox: Box) => void): void;
/** Subscribes to a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. */
subscribeBox(mailboxName: string, callback: (error: Error) => void): void;
/** Unsubscribes from a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. */
unsubscribeBox(mailboxName: string, callback: (error: Error) => void): void;
/** Fetches information about a mailbox other than the one currently open. Note: There is no guarantee that this will be a fast operation on the server. Also, do not call this on the currently open mailbox. */
status(mailboxName: string, callback: (error: Error, mailbox: Box) => void): void;
/** Obtains the full list of mailboxes. If nsPrefix is not specified, the main personal namespace is used. */
getBoxes(callback: (error: Error, mailboxes: MailBoxes) => void): void;
getBoxes(nsPrefix: string, callback: (error: Error, mailboxes: MailBoxes) => void): void;
/** Obtains the full list of subscribed mailboxes. If nsPrefix is not specified, the main personal namespace is used. */
getSubscribedBoxes(callback: (error: Error, mailboxes: MailBoxes) => void): void;
getSubscribedBoxes(nsPrefix: string, callback: (error: Error, mailboxes: MailBoxes) => void): void;
/** Permanently removes all messages flagged as Deleted in the currently open mailbox. If the server supports the 'UIDPLUS' capability, uids can be supplied to only remove messages that both have their uid in uids and have the \Deleted flag set. Note: At least on Gmail, performing this operation with any currently open mailbox that is not the Spam or Trash mailbox will merely archive any messages marked as Deleted (by moving them to the 'All Mail' mailbox). */
expunge(callback: (error: Error) => void): void;
expunge(uids: any /* MessageSource */, callback: (error: Error) => void): void;
/** Appends a message to selected mailbox. msgData is a string or Buffer containing an RFC-822 compatible MIME message. Valid options properties are: */
append(msgData: any, callback: (error: Error) => void): void;
append(msgData: any, options: AppendOptions, callback: (error: Error) => void): void;
}
}
declare module "imap" {
var out: typeof IMAP.Connection;
export = out;
}