Socket
Socket
Sign inDemoInstall

smtp-server

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smtp-server - npm Package Compare versions

Comparing version 3.4.1 to 3.4.2

4

CHANGELOG.md
# Changelog
## v3.4.2 2018-03-16
* handle missing address in listener handler
## v3.4.0 2017-12-01

@@ -4,0 +8,0 @@

@@ -285,2 +285,8 @@ 'use strict';

let address = this.server.address();
// address will be null if listener is using Unix socket
if (address === null) {
address = {address: null, port: null, family: null};
}
this.logger.info(

@@ -287,0 +293,0 @@ //

8

package.json
{
"name": "smtp-server",
"version": "3.4.1",
"version": "3.4.2",
"description": "Create custom SMTP servers on the fly",

@@ -14,3 +14,3 @@ "main": "lib/smtp-server.js",

"ipv6-normalize": "^1.0.1",
"nodemailer": "^4.4.0"
"nodemailer": "^4.6.3"
},

@@ -20,7 +20,7 @@ "devDependencies": {

"eslint-config-nodemailer": "^1.2.0",
"grunt": "^1.0.1",
"grunt": "^1.0.2",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^20.1.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^4.0.1",
"mocha": "^5.0.4",
"pem": "^1.12.3"

@@ -27,0 +27,0 @@ },

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