Bugfix: missed SASL commit

This commit is contained in:
djmaze 2021-03-29 21:54:55 +02:00
parent 389e473e22
commit 52abb3cf48

View file

@ -191,7 +191,7 @@ class ImapClient extends \MailSo\Net\NetClient
$sTicket = $oContinuationResponse->ResponseList[1] ?? null;
if ($sTicket)
{
$sToken = $SASL->authenticate($sLogin, $sPassword, $sTicket)
$sToken = $SASL->authenticate($sLogin, $sPassword, $sTicket);
$sTicket = \base64_decode($sTicket);
$this->oLogger->Write('ticket: '.$sTicket);