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

smtp-server-as-promised

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smtp-server-as-promised - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

.taprc

6

CHANGELOG.md
# Changelog
## v0.1.1 2017-04-10
* Node >= 5 is required
## v0.1.0 2017-04-10
* Use the lastest `smtp-server` module on MIT license.
* Use the lastest `smtp-server` module on MIT license
* `new Buffer()` is obsoleted.

@@ -7,0 +11,0 @@

2

examples/test-server-with-callbacks.js

@@ -6,3 +6,3 @@ 'use strict'

// Usage: node server.js opt1=value1 opt2=value2...
const options = Object.assign({}, ...process.argv.slice(2).map(a => a.split('=')).map(([k, v]) => ({[k]: v})))
const options = Object.assign({})//, ...process.argv.slice(2).map(a => a.split('=')).map(([k, v]) => ({[k]: v})))
Object.assign(options, {disabledCommands: ['AUTH'], onConnect, onMailFrom, onRcptTo, onData, onClose})

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

{
"name": "smtp-server-as-promised",
"version": "0.1.0",
"version": "0.1.1",
"description": "Promisify smtp-server module",

@@ -22,3 +22,3 @@ "main": "lib/smtp-server-as-promised.js",

"engines": {
"node": ">=4.0.0"
"node": ">=5.0.0"
},

@@ -25,0 +25,0 @@ "dependencies": {

@@ -16,3 +16,3 @@ ## smtp-server-as-promised

This module requires Node >= 4.
This module requires Node >= 5. For Node < 6 `--harmony` flag is required.

@@ -19,0 +19,0 @@ ### Installation

Sorry, the diff of this file is not supported yet

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