diff --git a/README.md b/README.md index dac9ef7..890d292 100644 --- a/README.md +++ b/README.md @@ -159,11 +159,11 @@ Therefore, an easy way to check for a multipart message is to check if the struc Lastly, here are the system flags defined by the IMAP spec (that may be added/removed to/from messages): -* \Seen - Message has been read -* \Answered - Message has been answered -* \Flagged - Message is "flagged" for urgent/special attention -* \Deleted - Message is "deleted" for removal -* \Draft - Message has not completed composition (marked as a draft). +* Seen - Message has been read +* Answered - Message has been answered +* Flagged - Message is "flagged" for urgent/special attention +* Deleted - Message is "deleted" for removal +* Draft - Message has not completed composition (marked as a draft). It should be noted however that the IMAP server can limit which flags can be permanently modified for any given message. If in doubt, check the mailbox's **permFlags** Array first. Additional custom flags may be provided by the server. If available, these will also be listed in the mailbox's **permFlags** Array. @@ -183,6 +183,23 @@ ImapConnection Events * **error**(Error) - Fires when an exception/error occurs (similar to net.Stream's error event). The given Error object represents the error raised. +ImapConnection Properties +------------------------- + +* **delim** - A String containing the (top-level) mailbox hierarchy delimiter. If the server does not support mailbox hierarchies and only a flat list, this value will be Boolean false. + +* **namespaces** - An Object containing 3 properties, one for each namespace type: personal (mailboxes that belong to the logged in user), other (mailboxes that belong to other users that the logged in user has access to), and shared (mailboxes that are accessible by any logged in user). The value of each of these properties is an Array of namespace Objects containing necessary information for each available namespace. There should always be one entry (although the IMAP spec allows for more, it doesn't seem to be very common) in the personal namespace list (if the server supports namespaces) with a blank namespace prefix. Each namespace Object has the following format (with example values): + + { prefix: '' // A String containing the prefix to use to access mailboxes in this namespace + , delimiter: '/' // A String containing the hierarchy delimiter for this namespace, or Boolean false for a flat namespace with no hierarchy + , extensions: [ // An Array of namespace extensions supported by this namespace, or null if none are specified + { name: 'X-FOO-BAR' // A String indicating the extension name + , params: [ 'BAZ' ] // An Array of Strings containing the parameters for this extension, or null if none are specified + } + ] + } + + ImapConnection Functions ------------------------ @@ -198,25 +215,92 @@ ImapConnection Functions * **logout**(Function) - _(void)_ - Closes the connection to the server. The Function parameter is the callback. -* **openBox**(String, Boolean, Function) - _(void)_ - Opens a specific mailbox that exists on the server. The String parameter is the name of the mailbox to open. The Boolean parameter specifies whether to open the mailbox in read-only mode or not. The Function parameter is the callback with two parameters: the error (null if none), and the _Box_ object of the newly opened mailbox. +* **openBox**(String[, Boolean], Function) - _(void)_ - Opens a specific mailbox that exists on the server. The String parameter is the name (including any necessary prefix/path) of the mailbox to open. The optional Boolean parameter specifies if the mailbox should be opened in read-only mode (defaults to false). The Function parameter is the callback with two parameters: the error (null if none), and the _Box_ object of the newly opened mailbox. + +* **closeBox**(Function) - _(void)_ - Closes the currently open mailbox. **Any messages marked as Deleted in the mailbox will be removed if the mailbox was NOT opened in read-only mode.** Also, logging out or opening another mailbox without closing the current one first will NOT cause deleted messages to be removed. The Function parameter is the callback with one parameter: the error (null if none). + +* **addBox**(String, Function) - _(void)_ - Creates a new mailbox on the server. The String parameter is the name (including any necessary prefix/path) of the new mailbox to create. The Function parameter is the callback with one parameter: the error (null if none). + +* **delBox**(String, Function) - _(void)_ - Removes a specific mailbox that exists on the server. The String parameter is the name (including any necessary prefix/path) of the mailbox to remove. The Function parameter is the callback with one parameter: the error (null if none). + +* **renameBox**(String, String, Function) - _(void)_ - Renames a specific mailbox that exists on the server. The first String parameter is the name (including any necessary prefix/path) of the existing mailbox. The second String parameter is the name (including any necessary prefix/path) of the new mailbox. The Boolean parameter specifies whether to open the mailbox in read-only mode or not. The Function parameter is the callback with two parameters: the error (null if none), and the _Box_ object of the newly renamed mailbox. **Note:** Renaming the 'INBOX' mailbox will instead cause all messages in 'INBOX' to be moved to the new mailbox. + +* **getBoxes**([String, ]Function) - _(void)_ - Obtains the full list of mailboxes. The optional String parameter is the namespace prefix to use (defaults to the main personal namespace). The Function parameter is the callback with two parameters: the error (null if none), and an Object with the following format (with example values): + + { INBOX: // mailbox name + { attribs: [] // mailbox attributes. An attribute of 'NOSELECT' indicates the mailbox cannot be opened + , delim: '/' // hierarchy delimiter for accessing this mailbox's direct children. This should usually be the same as ImapConnection.delim (?) + , children: null // an Object containing another structure similar in format to this top level, null if no children + , parent: null // pointer to parent mailbox, null if at the top level + } + , Work: + { attribs: [] + , delim: '/' + , children: null + , parent: null + } + , '[Gmail]': + { attribs: [ 'NOSELECT' ] + , delim: '/' + , children: + { 'All Mail': + { attribs: [] + , delim: '/' + , children: null + , parent: [Circular] + } + , Drafts: + { attribs: [] + , delim: '/' + , children: null + , parent: [Circular] + } + , 'Sent Mail': + { attribs: [] + , delim: '/' + , children: null + , parent: [Circular] + } + , Spam: + { attribs: [] + , delim: '/' + , children: null + , parent: [Circular] + } + , Starred: + { attribs: [] + , delim: '/' + , children: null + , parent: [Circular] + } + , Trash: + { attribs: [] + , delim: '/' + , children: null + , parent: [Circular] + } + } + , parent: null + } + } -* **closeBox**(Function) - _(void)_ - Closes the currently open mailbox. **Any messages marked as \Deleted in the mailbox will be removed if the mailbox was NOT opened in read-only mode.** Also, logging out or opening another mailbox without closing the current one first will NOT cause deleted messages to be removed. The Function parameter is the callback with one parameter: the error (null if none). +* **removeDeleted**(Function) - _(void)_ - Permanently removes all messages flagged as Deleted in the mailbox that is currently open. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. * **search**(Array, Function) - _(void)_ - Searches the currently open mailbox for messages using specific criterion. The Function parameter is the callback with three parameters: the error (null if none), the _Box_ object of the currently open mailbox, and an Array containing the message IDs matching the search criterion. The Array parameter is a list of Arrays containing the criterion (and any required arguments) to be used. Prefix the criteria name with an "!" to negate. For example, to search for unread messages since April 20, 2010 you could use: [ ['UNSEEN'], ['SINCE', 'April 20, 2010'] ]. To search for messages that are EITHER unread OR are dated April 20, 2010 or later, you could use: [ ['OR', ['UNSEEN'], ['SINCE', 'April 20, 2010'] ] ]. * The following message flags are valid criterion and do not require values: - * 'ANSWERED' - Messages with the \Answered flag set. - * 'DELETED' - Messages with the \Deleted flag set. - * 'DRAFT' - Messages with the \Draft flag set. - * 'FLAGGED' - Messages with the \Flagged flag set. - * 'NEW' - Messages that have the \Recent flag set but not the \Seen flag. - * 'SEEN' - Messages that have the \Seen flag set. - * 'RECENT' - Messages that have the \Recent flag set. - * 'OLD' - Messages that do not have the \Recent flag set. This is functionally equivalent to a criteria of "!RECENT" (as opposed to "!NEW"). - * 'UNANSWERED' - Messages that do not have the \Answered flag set. - * 'UNDELETED' - Messages that do not have the \Deleted flag set. - * 'UNDRAFT' - Messages that do not have the \Draft flag set. - * 'UNFLAGGED' - Messages that do not have the \Flagged flag set. - * 'UNSEEN' - Messages that do not have the \Seen flag set. + * 'ANSWERED' - Messages with the Answered flag set. + * 'DELETED' - Messages with the Deleted flag set. + * 'DRAFT' - Messages with the Draft flag set. + * 'FLAGGED' - Messages with the Flagged flag set. + * 'NEW' - Messages that have the Recent flag set but not the Seen flag. + * 'SEEN' - Messages that have the Seen flag set. + * 'RECENT' - Messages that have the Recent flag set. + * 'OLD' - Messages that do not have the Recent flag set. This is functionally equivalent to a criteria of "!RECENT" (as opposed to "!NEW"). + * 'UNANSWERED' - Messages that do not have the Answered flag set. + * 'UNDELETED' - Messages that do not have the Deleted flag set. + * 'UNDRAFT' - Messages that do not have the Draft flag set. + * 'UNFLAGGED' - Messages that do not have the Flagged flag set. + * 'UNSEEN' - Messages that do not have the Seen flag set. * The following are valid criterion that require String value(s): * 'BCC' - Messages that contain the specified string in the BCC field. * 'CC' - Messages that contain the specified string in the CC field. @@ -225,6 +309,7 @@ ImapConnection Functions * 'TO' - Messages that contain the specified string in the TO field. * 'BODY' - Messages that contain the specified string in the message body. * 'TEXT' - Messages that contain the specified string in the header OR the message body. + * 'KEYWORD' - Messages with the specified keyword set. * 'HEADER' - **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 with the given header name will be returned. Example: [ ['UNSEEN'], ['HEADER', 'SUBJECT', 'node-imap'] ] * The following are valid criterion that require a String parseable by JavaScript's Date object, or an instance of Date: * 'BEFORE' - Messages whose internal date (disregarding time and timezone) is earlier than the specified date. @@ -245,12 +330,18 @@ ImapConnection Functions * **headers** - A Boolean/Array value. A value of true fetches all message headers. An Array containing specific message headers to retrieve can also be specified. **Default:** true * **body** - A Boolean/String/Array value. A Boolean value of true fetches the entire raw message body. A String value containing a valid partID (see _FetchResult_'s structure property) fetches the entire body/content of that particular part. An Array value of length 2 can be specified if you wish to request a byte range of the content, where the first item is a Boolean/String as previously described and the second item is a String indicating the byte range, for example, to fetch the first 500 bytes: '0-500'. **Default:** false -* **removeDeleted**(Function) - _(void)_ - Permanently removes all messages flagged as \Deleted. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. +* **copy**(Integer, String, Function) - _(void)_ - Copies the message with the message ID specified by the Integer parameter in the currently open mailbox to the mailbox specified by the String parameter. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. + +* **move**(Integer, String, Function) - _(void)_ - Copies the message with the message ID specified by the Integer parameter in the currently open mailbox to the mailbox specified by the String parameter and marks the message in the current mailbox as Deleted. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. * **addFlags**(Integer, String/Array, Function) - _(void)_ - Adds the specified flag(s) to the message identified by the Integer parameter. The second parameter can either be a String containing a single flag or can be an Array of flags. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. * **delFlags**(Integer, String/Array, Function) - _(void)_ - Removes the specified flag(s) from the message identified by the Integer parameter. The second parameter can either be a String containing a single flag or can be an Array of flags. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. +* **addKeywords**(Integer, String/Array, Function) - _(void)_ - Adds the specified keyword(s) to the message identified by the Integer parameter. The second parameter can either be a String containing a single keyword or can be an Array of keywords. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. + +* **delKeywords**(Integer, String/Array, Function) - _(void)_ - Removes the specified keyword(s) from the message identified by the Integer parameter. The second parameter can either be a String containing a single keyword or can be an Array of keywords. The Function parameter is the callback with two parameters: the error (null if none), the _Box_ object of the currently open mailbox. + TODO ---- @@ -258,8 +349,8 @@ TODO A bunch of things not yet implemented in no particular order: * Support AUTH=CRAM-MD5/AUTH=CRAM_MD5 authentication -* Support IMAP keywords (with a workaround for gmail's lack of support for IMAP keywords) * Support additional IMAP commands/extensions: + * STATUS addition to LIST (via LISTA-STATUS extension -- http://tools.ietf.org/html/rfc5819) * GETQUOTA (via QUOTA extension -- http://tools.ietf.org/html/rfc2087) * UNSELECT (via UNSELECT extension -- http://tools.ietf.org/html/rfc3691) * LIST (and XLIST via XLIST extension -- http://groups.google.com/group/Gmail-Help-POP-and-IMAP-en/browse_thread/thread/a154105c54f020fb) diff --git a/imap.js b/imap.js index 4b749d7..0187813 100644 --- a/imap.js +++ b/imap.js @@ -1,5 +1,5 @@ var sys = require('sys'), net = require('net'), EventEmitter = require('events').EventEmitter; -var emptyFn = function() {}, CRLF = "\r\n", debug=emptyFn/*sys.debug*/, STATES = { NOCONNECT: 0, NOAUTH: 1, AUTH: 2, BOXSELECTING: 3, BOXSELECTED: 4 }; +var emptyFn = function() {}, CRLF = "\r\n", debug=emptyFn/*sys.debug*/, STATES = { NOCONNECT: 0, NOAUTH: 1, AUTH: 2, BOXSELECTING: 3, BOXSELECTED: 4 }, BOX_ATTRIBS = ['NOINFERIORS', 'NOSELECT', 'MARKED', 'UNMARKED']; function ImapConnection (options) { if (!(this instanceof ImapConnection)) @@ -22,34 +22,42 @@ function ImapConnection (options) { numCapRecvs: 0, isReady: false, isIdle: true, - delim: '/', tmrKeepalive: null, tmoKeepalive: 10000, + tmrConn: null, curData: '', + capabilities: [], fetchData: { flags: [], date: null, headers: null, body: null, structure: null, _total: 0 }, - box: { _uidnext: 0, _uidvalidity: 0, _flags: [], permFlags: [], name: null, messages: { total: 0, new: 0 }} + box: { _uidnext: 0, _uidvalidity: 0, _flags: [], _lastSearch: null, _newKeywords: false, keywords: [], permFlags: [], name: null, messages: { total: 0, new: 0 }}, + boxes: {} }; - this._capabilities = []; - this._tmrConn = null; - this._options = extend(true, this._options, options); + + this.delim = null; + this.namespaces = { personal: [], other: [], shared: [] }; }; sys.inherits(ImapConnection, EventEmitter); exports.ImapConnection = ImapConnection; ImapConnection.prototype.connect = function(loginCb) { var self = this, - skipSetup = (this._state.conn !== null), fnInit = function() { // First get pre-auth capabilities, including server-supported auth mechanisms self._send('CAPABILITY', function() { - // Next attempt to login - self._login(function(err) { + // Next, attempt to login + self._login(function(err, reentry) { if (err) { loginCb(err); return; } - // Lastly, get the mailbox hierarchy delimiter/separator used by the server + // Next, get the list of available namespaces if supported + if (!reentry && self._state.capabilities.indexOf('NAMESPACE') > -1) { + var fnMe = arguments.callee; + // Re-enter this function after we've obtained the available namespaces + self._send('NAMESPACE', function(e) { fnMe.call(this, e, true); }); + return; + } + // Lastly, get the top-level mailbox hierarchy delimiter used by the server self._send('LIST "" ""', loginCb); }); }); @@ -57,30 +65,22 @@ ImapConnection.prototype.connect = function(loginCb) { loginCb = loginCb || emptyFn; this._reset(); - if (!this._state.conn) - this._state.conn = net.createConnection(this._options.port, this._options.host); - else - this._state.conn.connect(this._options.port, this._options.host); + this._state.conn = net.createConnection(this._options.port, this._options.host); + if (this._options.secure) { this._state.conn.setSecure(); - if (this._state.conn.listeners('secure').length === 0) { - this._state.conn.on('secure', function() { - debug('Secure connection made.'); - }); - } - } else - this._state.conn.secure = false; - - this._tmrConn = setTimeout(this._fnTmrConn, this._options.connTimeout, loginCb); + this._state.conn.on('secure', function() { + debug('Secure connection made.'); + }); + } - if (skipSetup) - return; + this._state.tmrConn = setTimeout(this._fnTmrConn, this._options.connTimeout, loginCb); this._state.conn.setKeepAlive(true); this._state.conn.setEncoding('utf8'); this._state.conn.on('connect', function() { - clearTimeout(self._tmrConn); + clearTimeout(self._state.tmrConn); debug('Connected to host.'); self._state.conn.write(''); self._state.status = STATES.NOAUTH; @@ -126,12 +126,10 @@ ImapConnection.prototype.connect = function(loginCb) { process.nextTick(function() { self._state.conn.emit('data', line + CRLF); }); }); } - data = data[0]; - data = data.explode(' ', 3); - if (data[0] === '+') { // Continuation - // Should never happen .... - } else if (data[0] === '*') { // Untagged server response + data = data[0].explode(' ', 3); + + if (data[0] === '*') { // Untagged server response if (self._state.status === STATES.NOAUTH) { if (data[1] === 'PREAUTH') { // no need to login, the server pre-authenticated us self._state.status = STATES.AUTH; @@ -146,18 +144,18 @@ ImapConnection.prototype.connect = function(loginCb) { self._state.conn.emit('ready'); } // Restrict the type of server responses when unauthenticated - if (data[1] !== 'CAPABILITY' || data[1] !== 'ALERT') + if (data[1] !== 'CAPABILITY' && data[1] !== 'ALERT') return; } switch (data[1]) { case 'CAPABILITY': if (self._state.numCapRecvs < 2) self._state.numCapRecvs++; - self._capabilities = data[2].split(' ').map(up); + self._state.capabilities = data[2].split(' ').map(up); break; case 'FLAGS': if (self._state.status === STATES.BOXSELECTING) - self._state.box._flags = data[2].substr(1, data[2].length-2).split(' '); + self._state.box._flags = data[2].substr(1, data[2].length-2).split(' ').map(function(flag) {return flag.substr(1);});; case 'OK': if ((result = /^\[ALERT\] (.*)$/i.exec(data[2])) !== null) self.emit('alert', result[1]); @@ -167,17 +165,53 @@ ImapConnection.prototype.connect = function(loginCb) { self._state.box._uidvalidity = result[1]; else if ((result = /^\[UIDNEXT (\d+)\]$/i.exec(data[2])) !== null) self._state.box._uidnext = result[1]; - else if ((result = /^\[PERMANENTFLAGS \((.*)\)\]$/i.exec(data[2])) !== null) + else if ((result = /^\[PERMANENTFLAGS \((.*)\)\]$/i.exec(data[2])) !== null) { self._state.box.permFlags = result[1].split(' '); + var idx; + if ((idx = self._state.box.permFlags.indexOf('\\*')) > -1) { + self._state.box._newKeywords = true; + self._state.box.permFlags.splice(idx, 1); + } + self._state.box.keywords = self._state.box.permFlags.filter(function(flag) {return flag[0] !== '\\';}); + for (var i=0; i -1;}), + delim: (result[2] === 'NIL' ? false : result[2].substring(1, result[2].length-1)), + children: null, + parent: null + }, name = result[3], curChildren = self._state.boxes; + + if (box.delim) { + var path = name.split(box.delim).filter(isNotEmpty), parent = null; + name = path.pop(); + for (var i=0,len=path.length; i 0) { + if (str.substr(0, 3) === 'NIL') + idxNext = 3; + else { + idxNext = getNextIdxParen(str)+1; + + // examples: (...) + // (...)(...) + strList = str.substring(1, idxNext-1); + + // parse each namespace for the current type + while (strList.length > 0) { + details = {}; + idxNextName = getNextIdxParen(strList)+1; + + // examples: "prefix" "delimiter" + // "prefix" NIL + // "prefix" NIL "X-SOME-EXT" ("FOO" "BAR" "BAZ") + strNamespace = strList.substring(1, idxNextName-1); + + // prefix + idxNextVal = getNextIdxQuoted(strNamespace)+1; + details.prefix = strNamespace.substring(1, idxNextVal-1); + strNamespace = strNamespace.substr(idxNextVal).trim(); + + // delimiter + if (strNamespace.substr(0, 3) === 'NIL') { + details.delim = false; + strNamespace = strNamespace.substr(3).trim(); + } else { + idxNextVal = getNextIdxQuoted(strNamespace)+1; + details.delim = strNamespace.substring(1, idxNextVal-1); + strNamespace = strNamespace.substr(idxNextVal).trim(); + } + + // [extensions] + if (strNamespace.length > 0) { + details.extensions = []; + var extension; + while (strNamespace.length > 0) { + extension = { name: '', params: null }; + + // name + idxNextVal = getNextIdxQuoted(strNamespace)+1; + extension.name = strNamespace.substring(1, idxNextVal-1); + strNamespace = strNamespace.substr(idxNextVal).trim(); + + // params + idxNextVal = getNextIdxParen(strNamespace)+1; + var strParams = strNamespace.substring(1, idxNextVal-1), idxNextParam; + if (strParams.length > 0) { + extension.params = []; + while (strParams.length > 0) { + idxNextParam = getNextIdxQuoted(strParams)+1; + extension.params.push(strParams.substring(1, idxNextParam-1)); + strParams = strParams.substr(idxNextParam).trim(); + } + } + strNamespace = strNamespace.substr(idxNextVal).trim(); + + details.extensions.push(extension); + } + } else + details.extensions = null; + + namespaces[types[curType]].push(details); + strList = strList.substr(idxNextName).trim(); + } + curType++; + } + str = str.substr(idxNext).trim(); + } +} + function parseFetch(str, literalData, fetchData) { - // passed in str === "... {xxxx}" or "... {xxxx} ..." or just "..." + // str === "... {xxxx}" or "... {xxxx} ..." or just "..." // where ... is any number of key-value pairs // and {xxxx} is the byte count for the literalData describing the preceding item (almost always "BODY") - var key, idxNext, isNil; + var key, idxNext; while (str.length > 0) { key = str.substring(0, str.indexOf(' ')); str = str.substring(str.indexOf(' ')+1); - isNil = (str.substr(0, 3) === 'NIL'); - if (isNil) + if (str.substr(0, 3) === 'NIL') idxNext = 3; else { switch (key) { @@ -607,25 +800,7 @@ function parseFetch(str, literalData, fetchData) { fetchData.flags = str.substring(1, idxNext-1).split(' ').filter(isNotEmpty); break; case 'BODYSTRUCTURE': - var inQuote = false, - countParen = 0, - lastIndex = -1; - for (var i=1,len=str.length; i 0) { if (str.substr(0, 3) !== 'NIL') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); extensionData.language = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); } else @@ -744,7 +902,7 @@ function parseBodyStructure(str, prefix, partID) { // [location] if (str.length > 0) { if (str.substr(0, 3) !== 'NIL') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); extensionData.location = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); } else @@ -762,11 +920,11 @@ function parseBodyStructure(str, prefix, partID) { id: null, description: null, encoding: null, size: null, lines: null, // required -- NIL or otherwise md5: null, disposition: null, language: null, location: null // optional extension data that may be omitted entirely }, - lastIndex = getLastIdxQuoted(str), + lastIndex = getNextIdxQuoted(str), contentTypeMain = str.substring(1, lastIndex), contentTypeSub; str = str.substr(lastIndex+1).trim(); - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); contentTypeSub = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); @@ -779,7 +937,7 @@ function parseBodyStructure(str, prefix, partID) { str = str.substr(1); part.type.params = {}; while (str[0] !== ')') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); if (isKey) key = str.substring(1, lastIndex).toLowerCase(); else @@ -793,7 +951,7 @@ function parseBodyStructure(str, prefix, partID) { // content id if (str.substr(0, 3) !== 'NIL') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.id = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); } else @@ -801,7 +959,7 @@ function parseBodyStructure(str, prefix, partID) { // content description if (str.substr(0, 3) !== 'NIL') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.description = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); } else @@ -809,7 +967,7 @@ function parseBodyStructure(str, prefix, partID) { // content encoding if (str.substr(0, 3) !== 'NIL') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.encoding = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); } else @@ -840,7 +998,7 @@ function parseBodyStructure(str, prefix, partID) { // [md5 hash of content] if (str.length > 0) { if (str.substr(0, 3) !== 'NIL') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.md5 = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); } else @@ -851,7 +1009,7 @@ function parseBodyStructure(str, prefix, partID) { if (str.substr(0, 3) !== 'NIL') { part.disposition = { type: null, params: null }; str = str.substr(1); - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.disposition.type = str.substring(1, lastIndex).toLowerCase(); str = str.substr(lastIndex+1).trim(); if (str[0] === '(') { @@ -859,7 +1017,7 @@ function parseBodyStructure(str, prefix, partID) { str = str.substr(1); part.disposition.params = {}; while (str[0] !== ')') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); if (isKey) key = str.substring(1, lastIndex).toLowerCase(); else @@ -880,12 +1038,12 @@ function parseBodyStructure(str, prefix, partID) { part.language = []; str = str.substr(1); while (str[0] !== ')') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.language.push(str.substring(1, lastIndex)); str = str.substr(lastIndex+1).trim(); } } else { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.language = [str.substring(1, lastIndex)]; str = str.substr(lastIndex+1).trim(); } @@ -895,7 +1053,7 @@ function parseBodyStructure(str, prefix, partID) { // [location] if (str.length > 0) { if (str.substr(0, 3) !== 'NIL') { - lastIndex = getLastIdxQuoted(str); + lastIndex = getNextIdxQuoted(str); part.location = str.substring(1, lastIndex); str = str.substr(lastIndex+1).trim(); } else @@ -948,7 +1106,7 @@ function up(str) { return str.toUpperCase(); } -function getLastIdxQuoted(str) { +function getNextIdxQuoted(str) { var index = -1, countQuote = 0; for (var i=0,len=str.length; i