nodemailer 6.9.16 → 6.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.ncurc.js +2 -1
- package/CHANGELOG.md +12 -0
- package/lib/smtp-connection/index.js +3 -1
- package/lib/well-known/services.json +16 -0
- package/package.json +5 -5
package/.ncurc.js
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [6.10.0](https://github.com/nodemailer/nodemailer/compare/v6.9.16...v6.10.0) (2025-01-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **services:** add Seznam email service configuration ([#1695](https://github.com/nodemailer/nodemailer/issues/1695)) ([d1ae0a8](https://github.com/nodemailer/nodemailer/commit/d1ae0a86883ba6011a49a5bbdf076098e2e3637a))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **proxy:** Set error and timeout errors for proxied sockets ([aa0c99c](https://github.com/nodemailer/nodemailer/commit/aa0c99c8f25440bb3dc91f4f3448777c800604d7))
|
|
14
|
+
|
|
3
15
|
## [6.9.16](https://github.com/nodemailer/nodemailer/compare/v6.9.15...v6.9.16) (2024-10-28)
|
|
4
16
|
|
|
5
17
|
|
|
@@ -243,6 +243,8 @@ class SMTPConnection extends EventEmitter {
|
|
|
243
243
|
if (this.options.connection) {
|
|
244
244
|
// connection is already opened
|
|
245
245
|
this._socket = this.options.connection;
|
|
246
|
+
setupConnectionHandlers();
|
|
247
|
+
|
|
246
248
|
if (this.secureConnection && !this.alreadySecured) {
|
|
247
249
|
setImmediate(() =>
|
|
248
250
|
this._upgradeConnection(err => {
|
|
@@ -636,7 +638,7 @@ class SMTPConnection extends EventEmitter {
|
|
|
636
638
|
stream.write(message);
|
|
637
639
|
stream.end();
|
|
638
640
|
}
|
|
639
|
-
|
|
641
|
+
|
|
640
642
|
return callback(err);
|
|
641
643
|
}
|
|
642
644
|
let envelopeTime = Date.now();
|
|
@@ -203,6 +203,14 @@
|
|
|
203
203
|
"port": 2525
|
|
204
204
|
},
|
|
205
205
|
|
|
206
|
+
"Proton": {
|
|
207
|
+
"aliases": ["ProtonMail", "Proton.me", "Protonmail.com", "Protonmail.ch"],
|
|
208
|
+
"domains": ["proton.me", "protonmail.com", "pm.me", "protonmail.ch"],
|
|
209
|
+
"host": "smtp.protonmail.ch",
|
|
210
|
+
"port": 587,
|
|
211
|
+
"requireTLS": true
|
|
212
|
+
},
|
|
213
|
+
|
|
206
214
|
"qiye.aliyun": {
|
|
207
215
|
"host": "smtp.mxhichina.com",
|
|
208
216
|
"port": "465",
|
|
@@ -306,6 +314,14 @@
|
|
|
306
314
|
"secure": true
|
|
307
315
|
},
|
|
308
316
|
|
|
317
|
+
"Seznam": {
|
|
318
|
+
"aliases": ["Seznam Email"],
|
|
319
|
+
"domains": ["seznam.cz", "email.cz", "post.cz", "spoluzaci.cz"],
|
|
320
|
+
"host": "smtp.seznam.cz",
|
|
321
|
+
"port": 465,
|
|
322
|
+
"secure": true
|
|
323
|
+
},
|
|
324
|
+
|
|
309
325
|
"Sparkpost": {
|
|
310
326
|
"aliases": ["SparkPost", "SparkPost Mail"],
|
|
311
327
|
"domains": ["sparkpost.com"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodemailer",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.10.0",
|
|
4
4
|
"description": "Easy as cake e-mail sending from your Node.js applications",
|
|
5
5
|
"main": "lib/nodemailer.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://nodemailer.com/",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@aws-sdk/client-ses": "3.
|
|
26
|
+
"@aws-sdk/client-ses": "3.731.1",
|
|
27
27
|
"bunyan": "1.8.15",
|
|
28
|
-
"c8": "10.1.
|
|
28
|
+
"c8": "10.1.3",
|
|
29
29
|
"eslint": "8.57.0",
|
|
30
30
|
"eslint-config-nodemailer": "1.2.0",
|
|
31
31
|
"eslint-config-prettier": "9.1.0",
|
|
32
32
|
"libbase64": "1.3.0",
|
|
33
|
-
"libmime": "5.3.
|
|
34
|
-
"libqp": "2.1.
|
|
33
|
+
"libmime": "5.3.6",
|
|
34
|
+
"libqp": "2.1.1",
|
|
35
35
|
"nodemailer-ntlm-auth": "1.0.4",
|
|
36
36
|
"proxy": "1.0.2",
|
|
37
37
|
"proxy-test-server": "1.0.0",
|