From d5503a202e98591fc890e570eb1161c3591a0ad5 Mon Sep 17 00:00:00 2001 From: Andris Reinman Date: Wed, 7 Apr 2021 11:15:26 +0300 Subject: [PATCH] added missing space after challenge response --- lib/pop3/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pop3/connection.js b/lib/pop3/connection.js index 8644386a..ca585f2e 100644 --- a/lib/pop3/connection.js +++ b/lib/pop3/connection.js @@ -443,7 +443,7 @@ class POP3Connection extends EventEmitter { } if (!params.length) { - this.send('+'); + this.send('+ '); this._nextHandler = (args, next) => this.authPlain(args, next); return next(); }