mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Resolve #382
This commit is contained in:
parent
6fe8ce7ec4
commit
e5f1c41df0
1 changed files with 3 additions and 2 deletions
|
|
@ -219,14 +219,15 @@ class ImapClient extends \MailSo\Net\NetClient
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
$sPassword = $this->EscapeString(\utf8_decode($sPassword));
|
||||||
if ($this->oLogger)
|
if ($this->oLogger)
|
||||||
{
|
{
|
||||||
$this->oLogger->AddSecret($this->EscapeString($sPassword));
|
$this->oLogger->AddSecret($sPassword);
|
||||||
}
|
}
|
||||||
$oResponse = $this->SendRequestGetResponse('LOGIN',
|
$oResponse = $this->SendRequestGetResponse('LOGIN',
|
||||||
array(
|
array(
|
||||||
$this->EscapeString($sLogin),
|
$this->EscapeString($sLogin),
|
||||||
$this->EscapeString($sPassword)
|
$sPassword
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue