nodemailer 7.0.3 → 7.0.4
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [7.0.4](https://github.com/nodemailer/nodemailer/compare/v7.0.3...v7.0.4) (2025-06-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **pools:** Emit 'clear' once transporter is idle and all connections are closed ([839e286](https://github.com/nodemailer/nodemailer/commit/839e28634c9a93ae4321f399a8c893bf487a09fa))
|
|
9
|
+
* **smtp-connection:** jsdoc public annotation for socket ([#1741](https://github.com/nodemailer/nodemailer/issues/1741)) ([c45c84f](https://github.com/nodemailer/nodemailer/commit/c45c84fe9b8e2ec5e0615ab02d4197473911ab3e))
|
|
10
|
+
* **well-known-services:** Added AliyunQiye ([bb9e6da](https://github.com/nodemailer/nodemailer/commit/bb9e6daffb632d7d8f969359859f88a138de3a48))
|
|
11
|
+
|
|
3
12
|
## [7.0.3](https://github.com/nodemailer/nodemailer/compare/v7.0.2...v7.0.3) (2025-05-08)
|
|
4
13
|
|
|
5
14
|
|
package/lib/mailer/index.js
CHANGED
|
@@ -87,6 +87,11 @@ class Mail extends EventEmitter {
|
|
|
87
87
|
this.transporter.on('idle', (...args) => {
|
|
88
88
|
this.emit('idle', ...args);
|
|
89
89
|
});
|
|
90
|
+
|
|
91
|
+
// indicates if the sender has became idle and all connections are terminated
|
|
92
|
+
this.transporter.on('clear', (...args) => {
|
|
93
|
+
this.emit('clear', ...args);
|
|
94
|
+
});
|
|
90
95
|
}
|
|
91
96
|
|
|
92
97
|
/**
|
package/lib/smtp-pool/index.js
CHANGED
|
@@ -5,14 +5,20 @@
|
|
|
5
5
|
"secure": true,
|
|
6
6
|
"authMethod": "LOGIN"
|
|
7
7
|
},
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
"Aliyun": {
|
|
10
10
|
"domains": ["aliyun.com"],
|
|
11
11
|
"host": "smtp.aliyun.com",
|
|
12
12
|
"port": 465,
|
|
13
13
|
"secure": true
|
|
14
14
|
},
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
"AliyunQiye": {
|
|
17
|
+
"host": "smtp.qiye.aliyun.com",
|
|
18
|
+
"port": 465,
|
|
19
|
+
"secure": true
|
|
20
|
+
},
|
|
21
|
+
|
|
16
22
|
"AOL": {
|
|
17
23
|
"domains": ["aol.com"],
|
|
18
24
|
"host": "smtp.aol.com",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodemailer",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
4
|
"description": "Easy as cake e-mail sending from your Node.js applications",
|
|
5
5
|
"main": "lib/nodemailer.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://nodemailer.com/",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@aws-sdk/client-sesv2": "3.
|
|
26
|
+
"@aws-sdk/client-sesv2": "3.839.0",
|
|
27
27
|
"bunyan": "1.8.15",
|
|
28
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.
|
|
33
|
+
"libmime": "5.3.7",
|
|
34
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",
|
|
38
|
-
"smtp-server": "3.
|
|
38
|
+
"smtp-server": "3.14.0"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=6.0.0"
|