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 1.16.0 to 1.16.1

4

CHANGELOG.md
# Changelog
## v1.16.1 2016-10-17
* Allowed rewriting `connect` method
## v1.16.0 2016-10-17

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

4

lib/smtp-server.js

@@ -83,3 +83,5 @@ 'use strict';

// setup server listener and connection handler
this.server = (this.options.secure ? tls : net).createServer(this.options, this.connect.bind(this));
this.server = (this.options.secure ? tls : net).createServer(this.options, function (socket) {
this.connect(socket);
}.bind(this));

@@ -86,0 +88,0 @@ // ensure _sharedCreds, fixes an issue in node v4+ where STARTTLS fails because _sharedCreds does not exist

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

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

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