smtp-server-as-promised
Advanced tools
Comparing version 0.1.0 to 0.1.1
# 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 @@ |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17876
13