We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c408d4 commit 1b48402Copy full SHA for 1b48402
sendmail.js
@@ -230,7 +230,7 @@ module.exports = function (options) {
230
if (line[3] === ' ') {
231
// 250-information dash is not complete.
232
// 250 OK. space is complete.
233
- let lineNumber = parseInt(line);
+ let lineNumber = parseInt(line.substr(0, 3));
234
response(lineNumber, msg);
235
msg = '';
236
}
0 commit comments