@depup/nodemailer 8.0.1-depup.0 → 8.0.3-depup.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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [8.0.3](https://github.com/nodemailer/nodemailer/compare/v8.0.2...v8.0.3) (2026-03-18)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * clean up addressparser and fix group name fallback producing undefined ([9d55877](https://github.com/nodemailer/nodemailer/commit/9d55877f8ed15a6aefd7ba76cbb6b6a6cdbcc4fd))
9
+ * fix cookie bugs, remove dead code, and improve hot-path efficiency ([e8c8b92](https://github.com/nodemailer/nodemailer/commit/e8c8b92f46f2a82d06d49cc9a6ffc26067f68524))
10
+ * refactor smtp-connection for clarity and add Node.js 6 syntax compat test ([c5b48ea](https://github.com/nodemailer/nodemailer/commit/c5b48ea61c28eabf347972f4198a12cdab226ff7))
11
+ * remove familySupportCache that broke DNS resolution tests ([c803d90](https://github.com/nodemailer/nodemailer/commit/c803d901f195a21edbb2c276b2e116564467aaaa))
12
+
13
+ ## [8.0.2](https://github.com/nodemailer/nodemailer/compare/v8.0.1...v8.0.2) (2026-03-09)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * merge fragmented display names with unquoted commas in addressparser ([fe27f7f](https://github.com/nodemailer/nodemailer/commit/fe27f7fd57f7587d897274438da2f628ad0ad7d9))
19
+
3
20
  ## [8.0.1](https://github.com/nodemailer/nodemailer/compare/v8.0.0...v8.0.1) (2026-02-07)
4
21
 
5
22
 
package/README.md CHANGED
@@ -1,86 +1,25 @@
1
- # Nodemailer
1
+ # @depup/nodemailer
2
2
 
3
- [![Nodemailer](https://raw.githubusercontent.com/nodemailer/nodemailer/master/assets/nm_logo_200x136.png)](https://nodemailer.com/about/)
3
+ > Dependency-bumped version of [nodemailer](https://www.npmjs.com/package/nodemailer)
4
4
 
5
- Send emails from Node.js easy as cake! 🍰✉️
5
+ Generated by [DepUp](https://github.com/depup/npm) -- all production
6
+ dependencies bumped to latest versions.
6
7
 
7
- [![NPM](https://nodei.co/npm/nodemailer.png?downloads=true&downloadRank=true&stars=true)](https://nodemailer.com/about/)
8
+ ## Installation
8
9
 
9
- See [nodemailer.com](https://nodemailer.com/) for documentation and terms.
10
-
11
- > [!TIP]
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.\
13
- > \
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.
15
-
16
- ## Having an issue?
17
-
18
- #### First review the docs
19
-
20
- Documentation for Nodemailer can be found at [nodemailer.com](https://nodemailer.com/about/).
21
-
22
- #### Nodemailer throws a SyntaxError for "..."
23
-
24
- You are using an older Node.js version than v6.0. Upgrade Node.js to get support for the spread operator. Nodemailer supports all Node.js versions starting from Node.js@v6.0.0.
25
-
26
- #### I'm having issues with Gmail
27
-
28
- Gmail either works well, or it does not work at all. It is probably easier to switch to an alternative service instead of fixing issues with Gmail. If Gmail does not work for you, then don't use it. Read more about it [here](https://nodemailer.com/usage/using-gmail/).
29
-
30
- #### I get ETIMEDOUT errors
31
-
32
- Check your firewall settings. Timeout usually occurs when you try to open a connection to a firewalled port either on the server or on your machine. Some ISPs also block email ports to prevent spamming.
33
-
34
- #### Nodemailer works on one machine but not in another
35
-
36
- It's either a firewall issue, or your SMTP server blocks authentication attempts from some servers.
37
-
38
- #### I get TLS errors
39
-
40
- - If you are running the code on your machine, check your antivirus settings. Antiviruses often mess around with email ports usage. Node.js might not recognize the MITM cert your antivirus is using.
41
- - Latest Node versions allow only TLS versions 1.2 and higher. Some servers might still use TLS 1.1 or lower. Check Node.js docs on how to get correct TLS support for your app. You can change this with [tls.minVersion](https://nodejs.org/dist/latest-v16.x/docs/api/tls.html#tls_tls_createsecurecontext_options) option
42
- - You might have the wrong value for the `secure` option. This should be set to `true` only for port 465. For every other port, it should be `false`. Setting it to `false` does not mean that Nodemailer would not use TLS. Nodemailer would still try to upgrade the connection to use TLS if the server supports it.
43
- - Older Node versions do not fully support the certificate chain of the newest Let's Encrypt certificates. Either set [tls.rejectUnauthorized](https://nodejs.org/dist/latest-v16.x/docs/api/tls.html#tlsconnectoptions-callback) to `false` to skip chain verification or upgrade your Node version
44
-
45
- ```js
46
- let configOptions = {
47
- host: 'smtp.example.com',
48
- port: 587,
49
- tls: {
50
- rejectUnauthorized: true,
51
- minVersion: 'TLSv1.2'
52
- }
53
- };
54
- ```
55
-
56
- #### I have issues with DNS / hosts file
57
-
58
- Node.js uses [c-ares](https://nodejs.org/en/docs/meta/topics/dependencies/#c-ares) to resolve domain names, not the DNS library provided by the system, so if you have some custom DNS routing set up, it might be ignored. Nodemailer runs [dns.resolve4()](https://nodejs.org/dist/latest-v16.x/docs/api/dns.html#dnsresolve4hostname-options-callback) and [dns.resolve6()](https://nodejs.org/dist/latest-v16.x/docs/api/dns.html#dnsresolve6hostname-options-callback) to resolve hostname into an IP address. If both calls fail, then Nodemailer will fall back to [dns.lookup()](https://nodejs.org/dist/latest-v16.x/docs/api/dns.html#dnslookuphostname-options-callback). If this does not work for you, you can hard code the IP address into the configuration like shown below. In that case, Nodemailer would not perform any DNS lookups.
59
-
60
- ```js
61
- let configOptions = {
62
- host: '1.2.3.4',
63
- port: 465,
64
- secure: true,
65
- tls: {
66
- // must provide server name, otherwise TLS certificate check will fail
67
- servername: 'example.com'
68
- }
69
- };
10
+ ```bash
11
+ npm install @depup/nodemailer
70
12
  ```
71
13
 
72
- #### I have an issue with TypeScript types
73
-
74
- Nodemailer has official support for Node.js only. For anything related to TypeScript, you need to directly contact the authors of the [type definitions](https://www.npmjs.com/package/@types/nodemailer).
75
-
76
- #### I have a different problem
77
-
78
- If you are having issues with Nodemailer, then the best way to find help would be [Stack Overflow](https://stackoverflow.com/search?q=nodemailer) or revisit the [docs](https://nodemailer.com/about/).
79
-
80
- ### License
81
-
82
- Nodemailer is licensed under the **MIT No Attribution license**
14
+ | Field | Value |
15
+ |-------|-------|
16
+ | Original | [nodemailer](https://www.npmjs.com/package/nodemailer) @ 8.0.3 |
17
+ | Processed | 2026-03-18 |
18
+ | Smoke test | passed |
19
+ | Deps updated | 0 |
83
20
 
84
21
  ---
85
22
 
86
- The Nodemailer logo was designed by [Sven Kristjansen](https://www.behance.net/kristjansen).
23
+ Source: https://github.com/depup/npm | Original: https://www.npmjs.com/package/nodemailer
24
+
25
+ License inherited from the original package.
package/changes.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "bumped": {},
3
+ "timestamp": "2026-03-18T16:34:35.570Z",
4
+ "totalUpdated": 0
5
+ }
@@ -10,23 +10,20 @@
10
10
  function _handleAddress(tokens, depth) {
11
11
  let isGroup = false;
12
12
  let state = 'text';
13
- let address;
14
- let addresses = [];
15
- let data = {
13
+ const addresses = [];
14
+ const data = {
16
15
  address: [],
17
16
  comment: [],
18
17
  group: [],
19
18
  text: [],
20
- textWasQuoted: [] // Track which text tokens came from inside quotes
19
+ textWasQuoted: []
21
20
  };
22
- let i;
23
- let len;
24
- let insideQuotes = false; // Track if we're currently inside a quoted string
21
+ let insideQuotes = false;
25
22
 
26
23
  // Filter out <addresses>, (comments) and regular text
27
- for (i = 0, len = tokens.length; i < len; i++) {
28
- let token = tokens[i];
29
- let prevToken = i ? tokens[i - 1] : null;
24
+ for (let i = 0, len = tokens.length; i < len; i++) {
25
+ const token = tokens[i];
26
+ const prevToken = i ? tokens[i - 1] : null;
30
27
  if (token.type === 'operator') {
31
28
  switch (token.value) {
32
29
  case '<':
@@ -43,7 +40,6 @@ function _handleAddress(tokens, depth) {
43
40
  insideQuotes = false;
44
41
  break;
45
42
  case '"':
46
- // Track quote state for text tokens
47
43
  insideQuotes = !insideQuotes;
48
44
  state = 'text';
49
45
  break;
@@ -54,14 +50,12 @@ function _handleAddress(tokens, depth) {
54
50
  }
55
51
  } else if (token.value) {
56
52
  if (state === 'address') {
57
- // handle use case where unquoted name includes a "<"
58
- // Apple Mail truncates everything between an unexpected < and an address
59
- // and so will we
53
+ // Handle unquoted name that includes a "<".
54
+ // Apple Mail truncates everything between an unexpected < and an address.
60
55
  token.value = token.value.replace(/^[^<]*<\s*/, '');
61
56
  }
62
57
 
63
58
  if (prevToken && prevToken.noBreak && data[state].length) {
64
- // join values
65
59
  data[state][data[state].length - 1] += token.value;
66
60
  if (state === 'text' && insideQuotes) {
67
61
  data.textWasQuoted[data.textWasQuoted.length - 1] = true;
@@ -88,11 +82,9 @@ function _handleAddress(tokens, depth) {
88
82
  // Parse group members, but flatten any nested groups (RFC 5322 doesn't allow nesting)
89
83
  let groupMembers = [];
90
84
  if (data.group.length) {
91
- let parsedGroup = addressparser(data.group.join(','), { _depth: depth + 1 });
92
- // Flatten: if any member is itself a group, extract its members into the sequence
85
+ const parsedGroup = addressparser(data.group.join(','), { _depth: depth + 1 });
93
86
  parsedGroup.forEach(member => {
94
87
  if (member.group) {
95
- // Nested group detected - flatten it by adding its members directly
96
88
  groupMembers = groupMembers.concat(member.group);
97
89
  } else {
98
90
  groupMembers.push(member);
@@ -101,40 +93,40 @@ function _handleAddress(tokens, depth) {
101
93
  }
102
94
 
103
95
  addresses.push({
104
- name: data.text || (address && address.name),
96
+ name: data.text || '',
105
97
  group: groupMembers
106
98
  });
107
99
  } else {
108
100
  // If no address was found, try to detect one from regular text
109
101
  if (!data.address.length && data.text.length) {
110
- for (i = data.text.length - 1; i >= 0; i--) {
111
- // Security fix: Do not extract email addresses from quoted strings
112
- // RFC 5321 allows @ inside quoted local-parts like "user@domain"@example.com
113
- // Extracting emails from quoted text leads to misrouting vulnerabilities
114
- if (!data.textWasQuoted[i] && data.text[i].match(/^[^@\s]+@[^@\s]+$/)) {
102
+ for (let i = data.text.length - 1; i >= 0; i--) {
103
+ // Security: Do not extract email addresses from quoted strings.
104
+ // RFC 5321 allows @ inside quoted local-parts like "user@domain"@example.com.
105
+ // Extracting emails from quoted text leads to misrouting vulnerabilities.
106
+ if (!data.textWasQuoted[i] && /^[^@\s]+@[^@\s]+$/.test(data.text[i])) {
115
107
  data.address = data.text.splice(i, 1);
116
108
  data.textWasQuoted.splice(i, 1);
117
109
  break;
118
110
  }
119
111
  }
120
112
 
121
- let _regexHandler = function (address) {
122
- if (!data.address.length) {
123
- data.address = [address.trim()];
124
- return ' ';
125
- } else {
126
- return address;
127
- }
128
- };
129
-
130
- // still no address
113
+ // Try a looser regex match if strict match found nothing
131
114
  if (!data.address.length) {
132
- for (i = data.text.length - 1; i >= 0; i--) {
133
- // Security fix: Do not extract email addresses from quoted strings
115
+ let extracted = false;
116
+ for (let i = data.text.length - 1; i >= 0; i--) {
117
+ // Security: Do not extract email addresses from quoted strings
134
118
  if (!data.textWasQuoted[i]) {
135
- // fixed the regex to parse email address correctly when email address has more than one @
136
- data.text[i] = data.text[i].replace(/\s*\b[^@\s]+@[^\s]+\b\s*/, _regexHandler).trim();
137
- if (data.address.length) {
119
+ data.text[i] = data.text[i]
120
+ .replace(/\s*\b[^@\s]+@[^\s]+\b\s*/, match => {
121
+ if (!extracted) {
122
+ data.address = [match.trim()];
123
+ extracted = true;
124
+ return ' ';
125
+ }
126
+ return match;
127
+ })
128
+ .trim();
129
+ if (extracted) {
138
130
  break;
139
131
  }
140
132
  }
@@ -142,13 +134,13 @@ function _handleAddress(tokens, depth) {
142
134
  }
143
135
  }
144
136
 
145
- // If there's still is no text but a comment exixts, replace the two
137
+ // If there's still no text but a comment exists, replace the two
146
138
  if (!data.text.length && data.comment.length) {
147
139
  data.text = data.comment;
148
140
  data.comment = [];
149
141
  }
150
142
 
151
- // Keep only the first address occurence, push others to regular text
143
+ // Keep only the first address occurrence, push others to regular text
152
144
  if (data.address.length > 1) {
153
145
  data.text = data.text.concat(data.address.splice(1));
154
146
  }
@@ -157,24 +149,20 @@ function _handleAddress(tokens, depth) {
157
149
  data.text = data.text.join(' ');
158
150
  data.address = data.address.join(' ');
159
151
 
160
- if (!data.address && isGroup) {
161
- return [];
162
- } else {
163
- address = {
164
- address: data.address || data.text || '',
165
- name: data.text || data.address || ''
166
- };
152
+ const address = {
153
+ address: data.address || data.text || '',
154
+ name: data.text || data.address || ''
155
+ };
167
156
 
168
- if (address.address === address.name) {
169
- if ((address.address || '').match(/@/)) {
170
- address.name = '';
171
- } else {
172
- address.address = '';
173
- }
157
+ if (address.address === address.name) {
158
+ if (/@/.test(address.address || '')) {
159
+ address.name = '';
160
+ } else {
161
+ address.address = '';
174
162
  }
175
-
176
- addresses.push(address);
177
163
  }
164
+
165
+ addresses.push(address);
178
166
  }
179
167
 
180
168
  return addresses;
@@ -220,11 +208,11 @@ class Tokenizer {
220
208
  * @return {Array} An array of operator|text tokens
221
209
  */
222
210
  tokenize() {
223
- let list = [];
211
+ const list = [];
224
212
 
225
213
  for (let i = 0, len = this.str.length; i < len; i++) {
226
- let chr = this.str.charAt(i);
227
- let nextChr = i < len - 1 ? this.str.charAt(i + 1) : null;
214
+ const chr = this.str.charAt(i);
215
+ const nextChr = i < len - 1 ? this.str.charAt(i + 1) : null;
228
216
  this.checkChar(chr, nextChr);
229
217
  }
230
218
 
@@ -325,17 +313,17 @@ const MAX_NESTED_GROUP_DEPTH = 50;
325
313
  */
326
314
  function addressparser(str, options) {
327
315
  options = options || {};
328
- let depth = options._depth || 0;
316
+ const depth = options._depth || 0;
329
317
 
330
318
  // Prevent stack overflow from deeply nested groups (DoS protection)
331
319
  if (depth > MAX_NESTED_GROUP_DEPTH) {
332
320
  return [];
333
321
  }
334
322
 
335
- let tokenizer = new Tokenizer(str);
336
- let tokens = tokenizer.tokenize();
323
+ const tokenizer = new Tokenizer(str);
324
+ const tokens = tokenizer.tokenize();
337
325
 
338
- let addresses = [];
326
+ const addresses = [];
339
327
  let address = [];
340
328
  let parsedAddresses = [];
341
329
 
@@ -354,30 +342,41 @@ function addressparser(str, options) {
354
342
  addresses.push(address);
355
343
  }
356
344
 
357
- addresses.forEach(address => {
358
- address = _handleAddress(address, depth);
359
- if (address.length) {
360
- parsedAddresses = parsedAddresses.concat(address);
345
+ addresses.forEach(addr => {
346
+ const handled = _handleAddress(addr, depth);
347
+ if (handled.length) {
348
+ parsedAddresses = parsedAddresses.concat(handled);
361
349
  }
362
350
  });
363
351
 
352
+ // Merge fragments produced when unquoted display names contain commas.
353
+ // "Joe Foo, PhD <joe@example.com>" is split on the comma into
354
+ // [{name:"Joe Foo", address:""}, {name:"PhD", address:"joe@example.com"}].
355
+ // Recombine: a name-only entry followed by an entry with both name and address.
356
+ for (let i = parsedAddresses.length - 2; i >= 0; i--) {
357
+ const current = parsedAddresses[i];
358
+ const next = parsedAddresses[i + 1];
359
+ if (current.address === '' && current.name && !current.group && next.address && next.name) {
360
+ next.name = current.name + ', ' + next.name;
361
+ parsedAddresses.splice(i, 1);
362
+ }
363
+ }
364
+
364
365
  if (options.flatten) {
365
- let addresses = [];
366
- let walkAddressList = list => {
367
- list.forEach(address => {
368
- if (address.group) {
369
- return walkAddressList(address.group);
370
- } else {
371
- addresses.push(address);
366
+ const flatAddresses = [];
367
+ const walkAddressList = list => {
368
+ list.forEach(entry => {
369
+ if (entry.group) {
370
+ return walkAddressList(entry.group);
372
371
  }
372
+ flatAddresses.push(entry);
373
373
  });
374
374
  };
375
375
  walkAddressList(parsedAddresses);
376
- return addresses;
376
+ return flatAddresses;
377
377
  }
378
378
 
379
379
  return parsedAddresses;
380
380
  }
381
381
 
382
- // expose to the world
383
382
  module.exports = addressparser;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const Transform = require('stream').Transform;
3
+ const { Transform } = require('stream');
4
4
 
5
5
  /**
6
6
  * Encodes a Buffer into a base64 encoded string
@@ -31,11 +31,12 @@ function wrap(str, lineLength) {
31
31
  return str;
32
32
  }
33
33
 
34
- let result = [];
34
+ const result = [];
35
35
  let pos = 0;
36
- let chunkLength = lineLength * 1024;
36
+ const chunkLength = lineLength * 1024;
37
+ const wrapRegex = new RegExp('.{' + lineLength + '}', 'g');
37
38
  while (pos < str.length) {
38
- let wrappedLines = str.substr(pos, chunkLength).replace(new RegExp('.{' + lineLength + '}', 'g'), '$&\r\n');
39
+ const wrappedLines = str.substr(pos, chunkLength).replace(wrapRegex, '$&\r\n');
39
40
  result.push(wrappedLines);
40
41
  pos += chunkLength;
41
42
  }
@@ -94,7 +95,7 @@ class Encoder extends Transform {
94
95
  if (this.options.lineLength) {
95
96
  b64 = wrap(b64, this.options.lineLength);
96
97
 
97
- let lastLF = b64.lastIndexOf('\n');
98
+ const lastLF = b64.lastIndexOf('\n');
98
99
  if (lastLF < 0) {
99
100
  this._curLine = b64;
100
101
  b64 = '';
package/lib/dkim/index.js CHANGED
@@ -6,7 +6,7 @@
6
6
  const MessageParser = require('./message-parser');
7
7
  const RelaxedBody = require('./relaxed-body');
8
8
  const sign = require('./sign');
9
- const PassThrough = require('stream').PassThrough;
9
+ const { PassThrough } = require('stream');
10
10
  const fs = require('fs');
11
11
  const path = require('path');
12
12
  const crypto = require('crypto');
@@ -96,7 +96,7 @@ class DKIMSigner {
96
96
  }
97
97
  return this.createReadCache();
98
98
  }
99
- let chunk = this.chunks[this.readPos++];
99
+ const chunk = this.chunks[this.readPos++];
100
100
  if (this.output.write(chunk) === false) {
101
101
  return this.output.once('drain', () => {
102
102
  this.sendNextChunk();
@@ -107,13 +107,13 @@ class DKIMSigner {
107
107
 
108
108
  sendSignedOutput() {
109
109
  let keyPos = 0;
110
- let signNextKey = () => {
110
+ const signNextKey = () => {
111
111
  if (keyPos >= this.keys.length) {
112
112
  this.output.write(this.parser.rawHeaders);
113
113
  return setImmediate(() => this.sendNextChunk());
114
114
  }
115
- let key = this.keys[keyPos++];
116
- let dkimField = sign(this.headers, this.hashAlgo, this.bodyHash, {
115
+ const key = this.keys[keyPos++];
116
+ const dkimField = sign(this.headers, this.hashAlgo, this.bodyHash, {
117
117
  domainName: key.domainName,
118
118
  keySelector: key.keySelector,
119
119
  privateKey: key.privateKey,
@@ -211,7 +211,7 @@ class DKIM {
211
211
  }
212
212
 
213
213
  sign(input, extraOptions) {
214
- let output = new PassThrough();
214
+ const output = new PassThrough();
215
215
  let inputStream = input;
216
216
  let writeValue = false;
217
217
 
@@ -225,18 +225,10 @@ class DKIM {
225
225
 
226
226
  let options = this.options;
227
227
  if (extraOptions && Object.keys(extraOptions).length) {
228
- options = {};
229
- Object.keys(this.options || {}).forEach(key => {
230
- options[key] = this.options[key];
231
- });
232
- Object.keys(extraOptions || {}).forEach(key => {
233
- if (!(key in options)) {
234
- options[key] = extraOptions[key];
235
- }
236
- });
228
+ options = Object.assign({}, extraOptions, this.options);
237
229
  }
238
230
 
239
- let signer = new DKIMSigner(options, this.keys, inputStream, output);
231
+ const signer = new DKIMSigner(options, this.keys, inputStream, output);
240
232
  setImmediate(() => {
241
233
  signer.signStream();
242
234
  if (writeValue) {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const Transform = require('stream').Transform;
3
+ const { Transform } = require('stream');
4
4
 
5
5
  /**
6
6
  * MessageParser instance is a transform stream that separates message headers
@@ -24,8 +24,8 @@ class MessageParser extends Transform {
24
24
  * @param {Buffer} data Next data chunk from the stream
25
25
  */
26
26
  updateLastBytes(data) {
27
- let lblen = this.lastBytes.length;
28
- let nblen = Math.min(data.length, lblen);
27
+ const lblen = this.lastBytes.length;
28
+ const nblen = Math.min(data.length, lblen);
29
29
 
30
30
  // shift existing bytes
31
31
  for (let i = 0, len = lblen - nblen; i < len; i++) {
@@ -50,9 +50,8 @@ class MessageParser extends Transform {
50
50
  return true;
51
51
  }
52
52
 
53
- let lblen = this.lastBytes.length;
53
+ const lblen = this.lastBytes.length;
54
54
  let headerPos = 0;
55
- this.curLinePos = 0;
56
55
  for (let i = 0, len = this.lastBytes.length + data.length; i < len; i++) {
57
56
  let chr;
58
57
  if (i < lblen) {
@@ -61,8 +60,8 @@ class MessageParser extends Transform {
61
60
  chr = data[i - lblen];
62
61
  }
63
62
  if (chr === 0x0a && i) {
64
- let pr1 = i - 1 < lblen ? this.lastBytes[i - 1] : data[i - 1 - lblen];
65
- let pr2 = i > 1 ? (i - 2 < lblen ? this.lastBytes[i - 2] : data[i - 2 - lblen]) : false;
63
+ const pr1 = i - 1 < lblen ? this.lastBytes[i - 1] : data[i - 1 - lblen];
64
+ const pr2 = i > 1 ? (i - 2 < lblen ? this.lastBytes[i - 2] : data[i - 2 - lblen]) : false;
66
65
  if (pr1 === 0x0a) {
67
66
  this.headersParsed = true;
68
67
  headerPos = i - lblen + 1;
@@ -83,17 +82,17 @@ class MessageParser extends Transform {
83
82
  this.headerChunks = null;
84
83
  this.emit('headers', this.parseHeaders());
85
84
  if (data.length - 1 > headerPos) {
86
- let chunk = data.slice(headerPos);
85
+ const chunk = data.slice(headerPos);
87
86
  this.bodySize += chunk.length;
88
87
  // this would be the first chunk of data sent downstream
89
88
  setImmediate(() => this.push(chunk));
90
89
  }
91
90
  return false;
92
- } else {
93
- this.headerBytes += data.length;
94
- this.headerChunks.push(data);
95
91
  }
96
92
 
93
+ this.headerBytes += data.length;
94
+ this.headerChunks.push(data);
95
+
97
96
  // store last 4 bytes to catch header break
98
97
  this.updateLastBytes(data);
99
98
 
@@ -127,7 +126,7 @@ class MessageParser extends Transform {
127
126
 
128
127
  _flush(callback) {
129
128
  if (this.headerChunks) {
130
- let chunk = Buffer.concat(this.headerChunks, this.headerBytes);
129
+ const chunk = Buffer.concat(this.headerChunks, this.headerBytes);
131
130
  this.bodySize += chunk.length;
132
131
  this.push(chunk);
133
132
  this.headerChunks = null;
@@ -136,7 +135,7 @@ class MessageParser extends Transform {
136
135
  }
137
136
 
138
137
  parseHeaders() {
139
- let lines = (this.rawHeaders || '').toString().split(/\r?\n/);
138
+ const lines = (this.rawHeaders || '').toString().split(/\r?\n/);
140
139
  for (let i = lines.length - 1; i > 0; i--) {
141
140
  if (/^\s/.test(lines[i])) {
142
141
  lines[i - 1] += '\n' + lines[i];
@@ -2,7 +2,7 @@
2
2
 
3
3
  // streams through a message body and calculates relaxed body hash
4
4
 
5
- const Transform = require('stream').Transform;
5
+ const { Transform } = require('stream');
6
6
  const crypto = require('crypto');
7
7
 
8
8
  class RelaxedBody extends Transform {
@@ -29,7 +29,7 @@ class RelaxedBody extends Transform {
29
29
  // If we get another chunk that does not match this description then we can restore the previously processed data
30
30
  let state = 'file';
31
31
  for (let i = chunk.length - 1; i >= 0; i--) {
32
- let c = chunk[i];
32
+ const c = chunk[i];
33
33
 
34
34
  if (state === 'file' && (c === 0x0a || c === 0x0d)) {
35
35
  // do nothing, found \n or \r at the end of chunk, stil end of file