Socket
Socket
Sign inDemoInstall

nodemailer

Package Overview
Dependencies
0
Maintainers
1
Versions
269
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.4.3 to 6.4.4

4

CHANGELOG.md
# CHANGELOG
## 6.4.4 2020-03-01
- Add `options.forceAuth` for SMTP (Patrick Malouin) [a27ed2f7]
## 6.4.3 2020-02-22

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

2

lib/smtp-pool/index.js

@@ -616,3 +616,3 @@ 'use strict';

if (auth && connection.allowsAuth) {
if (auth && (connection.allowsAuth || options.forceAuth)) {
connection.login(auth, err => {

@@ -619,0 +619,0 @@ if (returned) {

@@ -140,3 +140,3 @@ 'use strict';

if (this.auth && this.connection.allowsAuth) {
if (this.auth && (this.connection.allowsAuth || options.forceAuth)) {
this.connection.login(this.auth, err => {

@@ -143,0 +143,0 @@ if (returned) {

@@ -270,3 +270,3 @@ 'use strict';

if (auth && connection.allowsAuth) {
if (auth && (connection.allowsAuth || options.forceAuth)) {
connection.login(auth, err => {

@@ -374,3 +374,3 @@ if (auth && auth !== this.auth && auth.oauth2) {

if (authData && connection.allowsAuth) {
if (authData && (connection.allowsAuth || options.forceAuth)) {
connection.login(authData, err => {

@@ -377,0 +377,0 @@ if (returned) {

{
"name": "nodemailer",
"version": "6.4.3",
"version": "6.4.4",
"description": "Easy as cake e-mail sending from your Node.js applications",

@@ -26,3 +26,3 @@ "main": "lib/nodemailer.js",

"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "6.7.0",
"eslint-config-prettier": "6.10.0",
"grunt": "1.0.4",

@@ -35,7 +35,7 @@ "grunt-cli": "1.3.2",

"libqp": "1.1.0",
"mocha": "6.2.2",
"mocha": "7.1.0",
"nodemailer-ntlm-auth": "1.0.1",
"proxy": "1.0.1",
"proxy-test-server": "1.0.0",
"sinon": "7.5.0",
"sinon": "9.0.0",
"smtp-server": "3.5.0"

@@ -42,0 +42,0 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc