Skip to content

Commit

Permalink
Resolve #1433
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Feb 14, 2024
1 parent 2dbcd47 commit 662121d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion snappymail/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ public function Login(Settings $oSettings) : self
$this->logMask($sChallenge);
$this->sendRaw($sChallenge);
$oResponse = $this->getResponse();
$SASL->verify($this->getResponseValue($oResponse));
$SASL->verify($this->getResponseValue($oResponse, Enumerations\ResponseType::CONTINUATION));
$this->sendRaw('');
$oResponse = $this->getResponse();
}
}
else if ('XOAUTH2' === $type || 'OAUTHBEARER' === $type)
Expand Down

0 comments on commit 662121d

Please sign in to comment.