Socket
Socket
Sign inDemoInstall

smtp-server

Package Overview
Dependencies
0
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.5.0 to 1.5.1

5

CHANGELOG.md
# Changelog
## v1.5.1 2015-09-18
* Fixed an issue where STARTTLS threw an error
* Fixed an issue where using unknown auth schemes threw an error (a13f0bc8 by farmdog)
## v1.5.0 2015-08-21

@@ -4,0 +9,0 @@

5

lib/smtp-connection.js

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

isServer: true,
server: this._server.server,
//server: this._server.server,

@@ -586,3 +586,4 @@ SNICallback: function(servername, cb) {

method = (args.shift() || '').toString().toUpperCase(); // get METHOD and keep additional arguments in the array
handler = sasl['SASL_' + method].bind(this);
handler = sasl['SASL_' + method];
handler = handler ? handler.bind(this) : handler;

@@ -589,0 +590,0 @@ if (!this.secure && this._isSupported('STARTTLS') && !this._server.options.hideSTARTTLS) {

7

lib/tls-options.js

@@ -52,2 +52,4 @@ 'use strict';

// default iojs cipher set, copied from https://certsimple.com/blog/a-plus-node-js-ssl
// use defaults provided by nodejs/iojs
/*
ciphers: [

@@ -70,5 +72,4 @@ 'ECDHE-RSA-AES256-SHA384',

'!CAMELLIA'
].join(':'),
honorCipherOrder: true,
NPNProtocols: ['smtp']
].join(':'),*/
honorCipherOrder: true
};

@@ -75,0 +76,0 @@

{
"name": "smtp-server",
"version": "1.5.0",
"version": "1.5.1",
"description": "Create custom SMTP servers on the fly",

@@ -15,5 +15,5 @@ "main": "lib/smtp-server.js",

"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-jshint": "^0.11.3",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.2.5",
"mocha": "^2.3.2",
"smtp-connection": "^1.3.1"

@@ -20,0 +20,0 @@ },

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc