nodemailer 6.9.6 → 6.9.8

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 CHANGED
@@ -2,6 +2,8 @@ module.exports = {
2
2
  upgrade: true,
3
3
  reject: [
4
4
  // API changes break existing tests
5
- 'proxy'
5
+ 'proxy',
6
+ // ESM
7
+ 'chai'
6
8
  ]
7
9
  };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [6.9.8](https://github.com/nodemailer/nodemailer/compare/v6.9.7...v6.9.8) (2023-12-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **punycode:** do not use native punycode module ([b4d0e0c](https://github.com/nodemailer/nodemailer/commit/b4d0e0c7cc4b15bc4d9e287f91d1bcaca87508b0))
9
+
10
+ ## [6.9.7](https://github.com/nodemailer/nodemailer/compare/v6.9.6...v6.9.7) (2023-10-22)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **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))
16
+
3
17
  ## [6.9.6](https://github.com/nodemailer/nodemailer/compare/v6.9.5...v6.9.6) (2023-10-09)
4
18
 
5
19
 
package/README.md CHANGED
@@ -8,22 +8,11 @@ Send emails from Node.js – easy as cake! 🍰✉️
8
8
 
9
9
  See [nodemailer.com](https://nodemailer.com/) for documentation and terms.
10
10
 
11
- ---
12
-
11
+ > [!TIP]
13
12
  > Check out **[EmailEngine](https://emailengine.app/?utm_source=github-nodemailer&utm_campaign=nodemailer&utm_medium=readme-link)** – a self-hosted email gateway that allows making **REST requests against IMAP and SMTP servers**. EmailEngine also sends webhooks whenever something changes on the registered accounts.\
14
13
  > \
15
14
  > Using the email accounts registered with EmailEngine, you can receive and [send emails](https://emailengine.app/sending-emails?utm_source=github-nodemailer&utm_campaign=nodemailer&utm_medium=readme-link). EmailEngine supports OAuth2, delayed sends, opens and clicks tracking, bounce detection, etc. All on top of regular email accounts without an external MTA service.
16
15
 
17
- ---
18
-
19
- This project is supported by [Forward Email](https://forwardemail.net) – the 100% open-source and privacy-focused email service.
20
-
21
- ---
22
-
23
- This project is supported by [Opensense](https://www.opensense.com) - The beautiful email signature management company for Office 365 and Google Workspace.
24
-
25
- ---
26
-
27
16
  ## Having an issue?
28
17
 
29
18
  #### First review the docs
package/lib/dkim/sign.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const punycode = require('punycode');
3
+ const punycode = require('../punycode');
4
4
  const mimeFuncs = require('../mime-funcs');
5
5
  const crypto = require('crypto');
6
6
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  const crypto = require('crypto');
6
6
  const fs = require('fs');
7
- const punycode = require('punycode');
7
+ const punycode = require('../punycode');
8
8
  const PassThrough = require('stream').PassThrough;
9
9
  const shared = require('../shared');
10
10
 
@@ -0,0 +1,460 @@
1
+ /*
2
+
3
+ Copied from https://github.com/mathiasbynens/punycode.js/blob/ef3505c8abb5143a00d53ce59077c9f7f4b2ac47/punycode.js
4
+
5
+ Copyright Mathias Bynens <https://mathiasbynens.be/>
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining
8
+ a copy of this software and associated documentation files (the
9
+ "Software"), to deal in the Software without restriction, including
10
+ without limitation the rights to use, copy, modify, merge, publish,
11
+ distribute, sublicense, and/or sell copies of the Software, and to
12
+ permit persons to whom the Software is furnished to do so, subject to
13
+ the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be
16
+ included in all copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25
+
26
+ */
27
+ /* eslint callback-return: 0, no-bitwise: 0, eqeqeq: 0, prefer-arrow-callback: 0, object-shorthand: 0 */
28
+
29
+ 'use strict';
30
+
31
+ /** Highest positive signed 32-bit float value */
32
+ const maxInt = 2147483647; // aka. 0x7FFFFFFF or 2^31-1
33
+
34
+ /** Bootstring parameters */
35
+ const base = 36;
36
+ const tMin = 1;
37
+ const tMax = 26;
38
+ const skew = 38;
39
+ const damp = 700;
40
+ const initialBias = 72;
41
+ const initialN = 128; // 0x80
42
+ const delimiter = '-'; // '\x2D'
43
+
44
+ /** Regular expressions */
45
+ const regexPunycode = /^xn--/;
46
+ const regexNonASCII = /[^\0-\x7F]/; // Note: U+007F DEL is excluded too.
47
+ const regexSeparators = /[\x2E\u3002\uFF0E\uFF61]/g; // RFC 3490 separators
48
+
49
+ /** Error messages */
50
+ const errors = {
51
+ overflow: 'Overflow: input needs wider integers to process',
52
+ 'not-basic': 'Illegal input >= 0x80 (not a basic code point)',
53
+ 'invalid-input': 'Invalid input'
54
+ };
55
+
56
+ /** Convenience shortcuts */
57
+ const baseMinusTMin = base - tMin;
58
+ const floor = Math.floor;
59
+ const stringFromCharCode = String.fromCharCode;
60
+
61
+ /*--------------------------------------------------------------------------*/
62
+
63
+ /**
64
+ * A generic error utility function.
65
+ * @private
66
+ * @param {String} type The error type.
67
+ * @returns {Error} Throws a `RangeError` with the applicable error message.
68
+ */
69
+ function error(type) {
70
+ throw new RangeError(errors[type]);
71
+ }
72
+
73
+ /**
74
+ * A generic `Array#map` utility function.
75
+ * @private
76
+ * @param {Array} array The array to iterate over.
77
+ * @param {Function} callback The function that gets called for every array
78
+ * item.
79
+ * @returns {Array} A new array of values returned by the callback function.
80
+ */
81
+ function map(array, callback) {
82
+ const result = [];
83
+ let length = array.length;
84
+ while (length--) {
85
+ result[length] = callback(array[length]);
86
+ }
87
+ return result;
88
+ }
89
+
90
+ /**
91
+ * A simple `Array#map`-like wrapper to work with domain name strings or email
92
+ * addresses.
93
+ * @private
94
+ * @param {String} domain The domain name or email address.
95
+ * @param {Function} callback The function that gets called for every
96
+ * character.
97
+ * @returns {String} A new string of characters returned by the callback
98
+ * function.
99
+ */
100
+ function mapDomain(domain, callback) {
101
+ const parts = domain.split('@');
102
+ let result = '';
103
+ if (parts.length > 1) {
104
+ // In email addresses, only the domain name should be punycoded. Leave
105
+ // the local part (i.e. everything up to `@`) intact.
106
+ result = parts[0] + '@';
107
+ domain = parts[1];
108
+ }
109
+ // Avoid `split(regex)` for IE8 compatibility. See #17.
110
+ domain = domain.replace(regexSeparators, '\x2E');
111
+ const labels = domain.split('.');
112
+ const encoded = map(labels, callback).join('.');
113
+ return result + encoded;
114
+ }
115
+
116
+ /**
117
+ * Creates an array containing the numeric code points of each Unicode
118
+ * character in the string. While JavaScript uses UCS-2 internally,
119
+ * this function will convert a pair of surrogate halves (each of which
120
+ * UCS-2 exposes as separate characters) into a single code point,
121
+ * matching UTF-16.
122
+ * @see `punycode.ucs2.encode`
123
+ * @see <https://mathiasbynens.be/notes/javascript-encoding>
124
+ * @memberOf punycode.ucs2
125
+ * @name decode
126
+ * @param {String} string The Unicode input string (UCS-2).
127
+ * @returns {Array} The new array of code points.
128
+ */
129
+ function ucs2decode(string) {
130
+ const output = [];
131
+ let counter = 0;
132
+ const length = string.length;
133
+ while (counter < length) {
134
+ const value = string.charCodeAt(counter++);
135
+ if (value >= 0xd800 && value <= 0xdbff && counter < length) {
136
+ // It's a high surrogate, and there is a next character.
137
+ const extra = string.charCodeAt(counter++);
138
+ if ((extra & 0xfc00) == 0xdc00) {
139
+ // Low surrogate.
140
+ output.push(((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000);
141
+ } else {
142
+ // It's an unmatched surrogate; only append this code unit, in case the
143
+ // next code unit is the high surrogate of a surrogate pair.
144
+ output.push(value);
145
+ counter--;
146
+ }
147
+ } else {
148
+ output.push(value);
149
+ }
150
+ }
151
+ return output;
152
+ }
153
+
154
+ /**
155
+ * Creates a string based on an array of numeric code points.
156
+ * @see `punycode.ucs2.decode`
157
+ * @memberOf punycode.ucs2
158
+ * @name encode
159
+ * @param {Array} codePoints The array of numeric code points.
160
+ * @returns {String} The new Unicode string (UCS-2).
161
+ */
162
+ const ucs2encode = codePoints => String.fromCodePoint(...codePoints);
163
+
164
+ /**
165
+ * Converts a basic code point into a digit/integer.
166
+ * @see `digitToBasic()`
167
+ * @private
168
+ * @param {Number} codePoint The basic numeric code point value.
169
+ * @returns {Number} The numeric value of a basic code point (for use in
170
+ * representing integers) in the range `0` to `base - 1`, or `base` if
171
+ * the code point does not represent a value.
172
+ */
173
+ const basicToDigit = function (codePoint) {
174
+ if (codePoint >= 0x30 && codePoint < 0x3a) {
175
+ return 26 + (codePoint - 0x30);
176
+ }
177
+ if (codePoint >= 0x41 && codePoint < 0x5b) {
178
+ return codePoint - 0x41;
179
+ }
180
+ if (codePoint >= 0x61 && codePoint < 0x7b) {
181
+ return codePoint - 0x61;
182
+ }
183
+ return base;
184
+ };
185
+
186
+ /**
187
+ * Converts a digit/integer into a basic code point.
188
+ * @see `basicToDigit()`
189
+ * @private
190
+ * @param {Number} digit The numeric value of a basic code point.
191
+ * @returns {Number} The basic code point whose value (when used for
192
+ * representing integers) is `digit`, which needs to be in the range
193
+ * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is
194
+ * used; else, the lowercase form is used. The behavior is undefined
195
+ * if `flag` is non-zero and `digit` has no uppercase form.
196
+ */
197
+ const digitToBasic = function (digit, flag) {
198
+ // 0..25 map to ASCII a..z or A..Z
199
+ // 26..35 map to ASCII 0..9
200
+ return digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);
201
+ };
202
+
203
+ /**
204
+ * Bias adaptation function as per section 3.4 of RFC 3492.
205
+ * https://tools.ietf.org/html/rfc3492#section-3.4
206
+ * @private
207
+ */
208
+ const adapt = function (delta, numPoints, firstTime) {
209
+ let k = 0;
210
+ delta = firstTime ? floor(delta / damp) : delta >> 1;
211
+ delta += floor(delta / numPoints);
212
+ for (; /* no initialization */ delta > (baseMinusTMin * tMax) >> 1; k += base) {
213
+ delta = floor(delta / baseMinusTMin);
214
+ }
215
+ return floor(k + ((baseMinusTMin + 1) * delta) / (delta + skew));
216
+ };
217
+
218
+ /**
219
+ * Converts a Punycode string of ASCII-only symbols to a string of Unicode
220
+ * symbols.
221
+ * @memberOf punycode
222
+ * @param {String} input The Punycode string of ASCII-only symbols.
223
+ * @returns {String} The resulting string of Unicode symbols.
224
+ */
225
+ const decode = function (input) {
226
+ // Don't use UCS-2.
227
+ const output = [];
228
+ const inputLength = input.length;
229
+ let i = 0;
230
+ let n = initialN;
231
+ let bias = initialBias;
232
+
233
+ // Handle the basic code points: let `basic` be the number of input code
234
+ // points before the last delimiter, or `0` if there is none, then copy
235
+ // the first basic code points to the output.
236
+
237
+ let basic = input.lastIndexOf(delimiter);
238
+ if (basic < 0) {
239
+ basic = 0;
240
+ }
241
+
242
+ for (let j = 0; j < basic; ++j) {
243
+ // if it's not a basic code point
244
+ if (input.charCodeAt(j) >= 0x80) {
245
+ error('not-basic');
246
+ }
247
+ output.push(input.charCodeAt(j));
248
+ }
249
+
250
+ // Main decoding loop: start just after the last delimiter if any basic code
251
+ // points were copied; start at the beginning otherwise.
252
+
253
+ for (let index = basic > 0 ? basic + 1 : 0; index < inputLength /* no final expression */; ) {
254
+ // `index` is the index of the next character to be consumed.
255
+ // Decode a generalized variable-length integer into `delta`,
256
+ // which gets added to `i`. The overflow checking is easier
257
+ // if we increase `i` as we go, then subtract off its starting
258
+ // value at the end to obtain `delta`.
259
+ const oldi = i;
260
+ for (let w = 1, k = base /* no condition */; ; k += base) {
261
+ if (index >= inputLength) {
262
+ error('invalid-input');
263
+ }
264
+
265
+ const digit = basicToDigit(input.charCodeAt(index++));
266
+
267
+ if (digit >= base) {
268
+ error('invalid-input');
269
+ }
270
+ if (digit > floor((maxInt - i) / w)) {
271
+ error('overflow');
272
+ }
273
+
274
+ i += digit * w;
275
+ const t = k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias;
276
+
277
+ if (digit < t) {
278
+ break;
279
+ }
280
+
281
+ const baseMinusT = base - t;
282
+ if (w > floor(maxInt / baseMinusT)) {
283
+ error('overflow');
284
+ }
285
+
286
+ w *= baseMinusT;
287
+ }
288
+
289
+ const out = output.length + 1;
290
+ bias = adapt(i - oldi, out, oldi == 0);
291
+
292
+ // `i` was supposed to wrap around from `out` to `0`,
293
+ // incrementing `n` each time, so we'll fix that now:
294
+ if (floor(i / out) > maxInt - n) {
295
+ error('overflow');
296
+ }
297
+
298
+ n += floor(i / out);
299
+ i %= out;
300
+
301
+ // Insert `n` at position `i` of the output.
302
+ output.splice(i++, 0, n);
303
+ }
304
+
305
+ return String.fromCodePoint(...output);
306
+ };
307
+
308
+ /**
309
+ * Converts a string of Unicode symbols (e.g. a domain name label) to a
310
+ * Punycode string of ASCII-only symbols.
311
+ * @memberOf punycode
312
+ * @param {String} input The string of Unicode symbols.
313
+ * @returns {String} The resulting Punycode string of ASCII-only symbols.
314
+ */
315
+ const encode = function (input) {
316
+ const output = [];
317
+
318
+ // Convert the input in UCS-2 to an array of Unicode code points.
319
+ input = ucs2decode(input);
320
+
321
+ // Cache the length.
322
+ const inputLength = input.length;
323
+
324
+ // Initialize the state.
325
+ let n = initialN;
326
+ let delta = 0;
327
+ let bias = initialBias;
328
+
329
+ // Handle the basic code points.
330
+ for (const currentValue of input) {
331
+ if (currentValue < 0x80) {
332
+ output.push(stringFromCharCode(currentValue));
333
+ }
334
+ }
335
+
336
+ const basicLength = output.length;
337
+ let handledCPCount = basicLength;
338
+
339
+ // `handledCPCount` is the number of code points that have been handled;
340
+ // `basicLength` is the number of basic code points.
341
+
342
+ // Finish the basic string with a delimiter unless it's empty.
343
+ if (basicLength) {
344
+ output.push(delimiter);
345
+ }
346
+
347
+ // Main encoding loop:
348
+ while (handledCPCount < inputLength) {
349
+ // All non-basic code points < n have been handled already. Find the next
350
+ // larger one:
351
+ let m = maxInt;
352
+ for (const currentValue of input) {
353
+ if (currentValue >= n && currentValue < m) {
354
+ m = currentValue;
355
+ }
356
+ }
357
+
358
+ // Increase `delta` enough to advance the decoder's <n,i> state to <m,0>,
359
+ // but guard against overflow.
360
+ const handledCPCountPlusOne = handledCPCount + 1;
361
+ if (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {
362
+ error('overflow');
363
+ }
364
+
365
+ delta += (m - n) * handledCPCountPlusOne;
366
+ n = m;
367
+
368
+ for (const currentValue of input) {
369
+ if (currentValue < n && ++delta > maxInt) {
370
+ error('overflow');
371
+ }
372
+ if (currentValue === n) {
373
+ // Represent delta as a generalized variable-length integer.
374
+ let q = delta;
375
+ for (let k = base /* no condition */; ; k += base) {
376
+ const t = k <= bias ? tMin : k >= bias + tMax ? tMax : k - bias;
377
+ if (q < t) {
378
+ break;
379
+ }
380
+ const qMinusT = q - t;
381
+ const baseMinusT = base - t;
382
+ output.push(stringFromCharCode(digitToBasic(t + (qMinusT % baseMinusT), 0)));
383
+ q = floor(qMinusT / baseMinusT);
384
+ }
385
+
386
+ output.push(stringFromCharCode(digitToBasic(q, 0)));
387
+ bias = adapt(delta, handledCPCountPlusOne, handledCPCount === basicLength);
388
+ delta = 0;
389
+ ++handledCPCount;
390
+ }
391
+ }
392
+
393
+ ++delta;
394
+ ++n;
395
+ }
396
+ return output.join('');
397
+ };
398
+
399
+ /**
400
+ * Converts a Punycode string representing a domain name or an email address
401
+ * to Unicode. Only the Punycoded parts of the input will be converted, i.e.
402
+ * it doesn't matter if you call it on a string that has already been
403
+ * converted to Unicode.
404
+ * @memberOf punycode
405
+ * @param {String} input The Punycoded domain name or email address to
406
+ * convert to Unicode.
407
+ * @returns {String} The Unicode representation of the given Punycode
408
+ * string.
409
+ */
410
+ const toUnicode = function (input) {
411
+ return mapDomain(input, function (string) {
412
+ return regexPunycode.test(string) ? decode(string.slice(4).toLowerCase()) : string;
413
+ });
414
+ };
415
+
416
+ /**
417
+ * Converts a Unicode string representing a domain name or an email address to
418
+ * Punycode. Only the non-ASCII parts of the domain name will be converted,
419
+ * i.e. it doesn't matter if you call it with a domain that's already in
420
+ * ASCII.
421
+ * @memberOf punycode
422
+ * @param {String} input The domain name or email address to convert, as a
423
+ * Unicode string.
424
+ * @returns {String} The Punycode representation of the given domain name or
425
+ * email address.
426
+ */
427
+ const toASCII = function (input) {
428
+ return mapDomain(input, function (string) {
429
+ return regexNonASCII.test(string) ? 'xn--' + encode(string) : string;
430
+ });
431
+ };
432
+
433
+ /*--------------------------------------------------------------------------*/
434
+
435
+ /** Define the public API */
436
+ const punycode = {
437
+ /**
438
+ * A string representing the current Punycode.js version number.
439
+ * @memberOf punycode
440
+ * @type String
441
+ */
442
+ version: '2.3.1',
443
+ /**
444
+ * An object of methods to convert from JavaScript's internal character
445
+ * representation (UCS-2) to Unicode code points, and back.
446
+ * @see <https://mathiasbynens.be/notes/javascript-encoding>
447
+ * @memberOf punycode
448
+ * @type Object
449
+ */
450
+ ucs2: {
451
+ decode: ucs2decode,
452
+ encode: ucs2encode
453
+ },
454
+ decode: decode,
455
+ encode: encode,
456
+ toASCII: toASCII,
457
+ toUnicode: toUnicode
458
+ };
459
+
460
+ module.exports = punycode;
@@ -434,7 +434,7 @@ class SMTPConnection extends EventEmitter {
434
434
  }
435
435
 
436
436
  if (this._authMethod !== 'XOAUTH2' && (!this._auth.credentials || !this._auth.credentials.user || !this._auth.credentials.pass)) {
437
- if (this._auth.user && this._auth.pass) {
437
+ if ((this._auth.user && this._auth.pass) || this.customAuth.has(this._authMethod)) {
438
438
  this._auth.credentials = {
439
439
  user: this._auth.user,
440
440
  pass: this._auth.pass,
@@ -120,6 +120,11 @@
120
120
  "secure": true
121
121
  },
122
122
 
123
+ "Mailcatch.app": {
124
+ "host": "sandbox-smtp.mailcatch.app",
125
+ "port": 2525
126
+ },
127
+
123
128
  "Maildev": {
124
129
  "port": 1025,
125
130
  "ignoreTLS": true
@@ -254,6 +259,42 @@
254
259
  "secure": true
255
260
  },
256
261
 
262
+ "SES-AP-SOUTH-1": {
263
+ "host": "email-smtp.ap-south-1.amazonaws.com",
264
+ "port": 465,
265
+ "secure": true
266
+ },
267
+
268
+ "SES-AP-NORTHEAST-1": {
269
+ "host": "email-smtp.ap-northeast-1.amazonaws.com",
270
+ "port": 465,
271
+ "secure": true
272
+ },
273
+
274
+ "SES-AP-NORTHEAST-2": {
275
+ "host": "email-smtp.ap-northeast-2.amazonaws.com",
276
+ "port": 465,
277
+ "secure": true
278
+ },
279
+
280
+ "SES-AP-NORTHEAST-3": {
281
+ "host": "email-smtp.ap-northeast-3.amazonaws.com",
282
+ "port": 465,
283
+ "secure": true
284
+ },
285
+
286
+ "SES-AP-SOUTHEAST-1": {
287
+ "host": "email-smtp.ap-southeast-1.amazonaws.com",
288
+ "port": 465,
289
+ "secure": true
290
+ },
291
+
292
+ "SES-AP-SOUTHEAST-2": {
293
+ "host": "email-smtp.ap-southeast-2.amazonaws.com",
294
+ "port": 465,
295
+ "secure": true
296
+ },
297
+
257
298
  "Sparkpost": {
258
299
  "aliases": ["SparkPost", "SparkPost Mail"],
259
300
  "domains": ["sparkpost.com"],
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "nodemailer",
3
- "version": "6.9.6",
3
+ "version": "6.9.8",
4
4
  "description": "Easy as cake e-mail sending from your Node.js applications",
5
5
  "main": "lib/nodemailer.js",
6
6
  "scripts": {
7
- "test": "grunt --trace-warnings"
7
+ "test": "grunt --trace-warnings",
8
+ "update": "rm -rf node_modules/ package-lock.json && ncu -u && npm install"
8
9
  },
9
10
  "repository": {
10
11
  "type": "git",
@@ -20,12 +21,11 @@
20
21
  },
21
22
  "homepage": "https://nodemailer.com/",
22
23
  "devDependencies": {
23
- "@aws-sdk/client-ses": "3.427.0",
24
- "aws-sdk": "2.1472.0",
24
+ "@aws-sdk/client-ses": "3.484.0",
25
25
  "bunyan": "1.8.15",
26
26
  "chai": "4.3.10",
27
27
  "eslint-config-nodemailer": "1.2.0",
28
- "eslint-config-prettier": "9.0.0",
28
+ "eslint-config-prettier": "9.1.0",
29
29
  "grunt": "1.6.1",
30
30
  "grunt-cli": "1.4.3",
31
31
  "grunt-eslint": "24.3.0",
@@ -37,7 +37,7 @@
37
37
  "nodemailer-ntlm-auth": "1.0.4",
38
38
  "proxy": "1.0.2",
39
39
  "proxy-test-server": "1.0.0",
40
- "sinon": "16.1.0",
40
+ "sinon": "17.0.1",
41
41
  "smtp-server": "3.13.0"
42
42
  },
43
43
  "engines": {