Socket
Socket
Sign inDemoInstall

nodemailer-smtp-pool

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodemailer-smtp-pool - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

14

package.json
{
"name": "nodemailer-smtp-pool",
"version": "1.0.1",
"version": "1.0.2",
"description": "SMTP transport for Nodemailer",

@@ -24,2 +24,3 @@ "main": "src/smtp-pool.js",

"dependencies": {
"clone": "^1.0.2",
"nodemailer-wellknown": "^0.1.5",

@@ -29,9 +30,10 @@ "smtp-connection": "^1.2.0"

"devDependencies": {
"chai": "^2.1.1",
"chai": "^2.3.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-mocha-test": "^0.12.7",
"sinon": "^1.13.0",
"smtp-server": "^1.1.0"
"mocha": "^2.2.4",
"sinon": "^1.14.1",
"smtp-server": "^1.4.0"
}
}
}

@@ -26,3 +26,3 @@ 'use strict';

this.options = options || {};
this.options = options && clone(options) || {};
this.options.maxConnections = this.options.maxConnections || 5;

@@ -40,3 +40,3 @@ this.options.maxMessages = this.options.maxMessages || 100;

// temporary object
var connection = new SMTPConnection(options);
var connection = new SMTPConnection(this.options);

@@ -43,0 +43,0 @@ this.name = 'SMTP (pool)';

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