nodemailer
Advanced tools
Comparing version 6.9.6 to 6.9.7
# CHANGELOG | ||
## [6.9.7](https://github.com/nodemailer/nodemailer/compare/v6.9.6...v6.9.7) (2023-10-22) | ||
### Bug Fixes | ||
* **customAuth:** Do not require user and pass to be set for custom authentication schemes (fixes [#1584](https://github.com/nodemailer/nodemailer/issues/1584)) ([41d482c](https://github.com/nodemailer/nodemailer/commit/41d482c3f01e26111b06f3e46351b193db3fb5cb)) | ||
## [6.9.6](https://github.com/nodemailer/nodemailer/compare/v6.9.5...v6.9.6) (2023-10-09) | ||
@@ -4,0 +11,0 @@ |
@@ -437,3 +437,3 @@ 'use strict'; | ||
if (this._authMethod !== 'XOAUTH2' && (!this._auth.credentials || !this._auth.credentials.user || !this._auth.credentials.pass)) { | ||
if (this._auth.user && this._auth.pass) { | ||
if ((this._auth.user && this._auth.pass) || this.customAuth.has(this._authMethod)) { | ||
this._auth.credentials = { | ||
@@ -440,0 +440,0 @@ user: this._auth.user, |
@@ -257,2 +257,38 @@ { | ||
"SES-AP-SOUTH-1": { | ||
"host": "email-smtp.ap-south-1.amazonaws.com", | ||
"port": 465, | ||
"secure": true | ||
}, | ||
"SES-AP-NORTHEAST-1": { | ||
"host": "email-smtp.ap-northeast-1.amazonaws.com", | ||
"port": 465, | ||
"secure": true | ||
}, | ||
"SES-AP-NORTHEAST-2": { | ||
"host": "email-smtp.ap-northeast-2.amazonaws.com", | ||
"port": 465, | ||
"secure": true | ||
}, | ||
"SES-AP-NORTHEAST-3": { | ||
"host": "email-smtp.ap-northeast-3.amazonaws.com", | ||
"port": 465, | ||
"secure": true | ||
}, | ||
"SES-AP-SOUTHEAST-1": { | ||
"host": "email-smtp.ap-southeast-1.amazonaws.com", | ||
"port": 465, | ||
"secure": true | ||
}, | ||
"SES-AP-SOUTHEAST-2": { | ||
"host": "email-smtp.ap-southeast-2.amazonaws.com", | ||
"port": 465, | ||
"secure": true | ||
}, | ||
"Sparkpost": { | ||
@@ -259,0 +295,0 @@ "aliases": ["SparkPost", "SparkPost Mail"], |
{ | ||
"name": "nodemailer", | ||
"version": "6.9.6", | ||
"version": "6.9.7", | ||
"description": "Easy as cake e-mail sending from your Node.js applications", | ||
"main": "lib/nodemailer.js", | ||
"scripts": { | ||
"test": "grunt --trace-warnings" | ||
"test": "grunt --trace-warnings", | ||
"update": "rm -rf node_modules/ package-lock.json && ncu -u && npm install" | ||
}, | ||
@@ -23,4 +24,4 @@ "repository": { | ||
"devDependencies": { | ||
"@aws-sdk/client-ses": "3.427.0", | ||
"aws-sdk": "2.1472.0", | ||
"@aws-sdk/client-ses": "3.433.0", | ||
"aws-sdk": "2.1478.0", | ||
"bunyan": "1.8.15", | ||
@@ -41,3 +42,3 @@ "chai": "4.3.10", | ||
"proxy-test-server": "1.0.0", | ||
"sinon": "16.1.0", | ||
"sinon": "17.0.0", | ||
"smtp-server": "3.13.0" | ||
@@ -44,0 +45,0 @@ }, |
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
483818
11634