From 232da24a7d0b3e92b11025bbc40d5b39027eb977 Mon Sep 17 00:00:00 2001 From: Flavio Benedini Date: Wed, 26 Aug 2026 08:50:21 -0300 Subject: [PATCH] fix: removendo trecho que impedia autenticacao --- lib/Connection.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/Connection.js b/lib/Connection.js index bd31e98b..aeb2cd68 100644 --- a/lib/Connection.js +++ b/lib/Connection.js @@ -1654,12 +1654,6 @@ Connection.prototype._login = function() { return; } - if (self.serverSupports('LOGINDISABLED')) { - err = new Error('Logging in is disabled on this server'); - err.source = 'authentication'; - return reentry(err); - } - var cmd; if (self.serverSupports('AUTH=XOAUTH') && self._config.xoauth) { self._caps = undefined;