imap-client
Advanced tools
Comparing version 0.6.0 to 0.7.0
{ | ||
"name": "imap-client", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"scripts": { | ||
@@ -10,3 +10,3 @@ "pretest": "dir=$(pwd) && cd node_modules/browserbox/node_modules/tcp-socket/node_modules/node-forge/ && npm install && npm run minify && cd $dir", | ||
"dependencies": { | ||
"browserbox": "~0.4.0", | ||
"browserbox": "~0.5.0", | ||
"axe-logger": "~0.0.2" | ||
@@ -13,0 +13,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
# imap-client | ||
# imap-client | ||
@@ -91,3 +91,3 @@ High-level UMD module wrapper for [browserbox](https://github.com/whiteout-io/browserbox). This module encapsulates the most commonly used IMAP commands. | ||
* from, replyTo, to, cc, bcc: The Sender/Receivers | ||
* modseq: The MODSEQ number of this message | ||
* modseq: The MODSEQ number of this message (as a string – javascript numbers do not tolerate 64 bit uints) | ||
* subject: The message's subject | ||
@@ -175,3 +175,3 @@ * sentDate: The date the message was sent | ||
var SYNC_TYPE_DELETED = 'deleted'; | ||
var SYNC_TYPE_MSGS = 'messages'; | ||
var SYNC_TYPE_MSGS = 'messages'; | ||
@@ -181,3 +181,3 @@ imap.onSyncUpdate = function(options) { | ||
updatesMailbox = options.path | ||
if (options.type === SYNC_TYPE_NEW) { | ||
@@ -184,0 +184,0 @@ // new messages available on imap |
@@ -82,3 +82,3 @@ (function(factory) { | ||
* uidlist: [1, 2, 3, 4, 5], | ||
* highestModseq: 555 | ||
* highestModseq: "555" | ||
* } | ||
@@ -306,3 +306,3 @@ * } | ||
* | ||
* @param {Number} options.highestModseq MODSEQ value | ||
* @param {String} options.highestModseq MODSEQ value | ||
* @param {Function} callback Runs when the list is fetched | ||
@@ -416,3 +416,3 @@ */ | ||
* or includes information in case of an error | ||
* @param {String} options.path The path to the folder to subscribe to | ||
@@ -698,3 +698,3 @@ * @param {String} callback(err) Invoked when listening folder has been selected, or an error occurred | ||
bcc: message.envelope.bcc || [], | ||
modseq: message.modseq || 0, | ||
modseq: message.modseq || '0', | ||
subject: message.envelope.subject || '(no subject)', | ||
@@ -701,0 +701,0 @@ inReplyTo: (message.envelope['in-reply-to'] || '').replace(/[<>]/g, ''), |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
107373
+ Addedbrowserbox@0.5.2(transitive)
- Removedbrowserbox@0.4.0(transitive)
Updatedbrowserbox@~0.5.0