Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

imap-client

Package Overview
Dependencies
Maintainers
3
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imap-client - npm Package Compare versions

Comparing version 0.6.0 to 0.7.0

4

package.json
{
"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, ''),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc