nodemailer
Advanced tools
Comparing version 6.7.5 to 6.7.6
@@ -54,3 +54,3 @@ 'use strict'; | ||
* @param {Object} options Stream options | ||
* @param {Number} [options.lineLength=76] Maximum lenght for lines, set to false to disable wrapping | ||
* @param {Number} [options.lineLength=76] Maximum length for lines, set to false to disable wrapping | ||
*/ | ||
@@ -57,0 +57,0 @@ class Encoder extends Transform { |
@@ -630,2 +630,9 @@ 'use strict'; | ||
}); | ||
} else if (!auth && connection.allowsAuth) { | ||
let err = new Error('Authentication info was not provided'); | ||
err.code = 'NoAuth'; | ||
returned = true; | ||
connection.close(); | ||
return callback(err); | ||
} else { | ||
@@ -632,0 +639,0 @@ finalize(); |
@@ -387,2 +387,9 @@ 'use strict'; | ||
}); | ||
} else if (!authData && connection.allowsAuth) { | ||
let err = new Error('Authentication info was not provided'); | ||
err.code = 'NoAuth'; | ||
returned = true; | ||
connection.close(); | ||
return callback(err); | ||
} else { | ||
@@ -389,0 +396,0 @@ finalize(); |
@@ -14,2 +14,8 @@ { | ||
}, | ||
"Bluewin": { | ||
"host": "smtpauths.bluewin.ch", | ||
"domains": ["bluewin.ch"], | ||
"port": 465 | ||
}, | ||
@@ -192,4 +198,4 @@ "DebugMail": { | ||
"SendCloud": { | ||
"host": "smtpcloud.sohu.com", | ||
"port": 25 | ||
"host": "smtp.sendcloud.net", | ||
"port": 2525 | ||
}, | ||
@@ -196,0 +202,0 @@ |
{ | ||
"name": "nodemailer", | ||
"version": "6.7.5", | ||
"version": "6.7.6", | ||
"description": "Easy as cake e-mail sending from your Node.js applications", | ||
@@ -23,4 +23,4 @@ "main": "lib/nodemailer.js", | ||
"devDependencies": { | ||
"@aws-sdk/client-ses": "3.79.0", | ||
"aws-sdk": "2.1124.0", | ||
"@aws-sdk/client-ses": "3.118.1", | ||
"aws-sdk": "2.1165.0", | ||
"bunyan": "1.8.15", | ||
@@ -30,3 +30,3 @@ "chai": "4.3.6", | ||
"eslint-config-prettier": "8.5.0", | ||
"grunt": "1.5.2", | ||
"grunt": "1.5.3", | ||
"grunt-cli": "1.4.3", | ||
@@ -38,7 +38,7 @@ "grunt-eslint": "24.0.0", | ||
"libqp": "1.1.0", | ||
"mocha": "9.2.2", | ||
"mocha": "10.0.0", | ||
"nodemailer-ntlm-auth": "1.0.1", | ||
"proxy": "1.0.2", | ||
"proxy-test-server": "1.0.0", | ||
"sinon": "13.0.2", | ||
"sinon": "14.0.0", | ||
"smtp-server": "3.11.0" | ||
@@ -45,0 +45,0 @@ }, |
Sorry, the diff of this file is too big to display
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
484521
11588