diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-18 18:22:25 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-12-18 18:22:25 +0000 |
| commit | 49c8adfca6d0ac069bf311a4e8aeea8a782a0f1b (patch) | |
| tree | 2856ce0ae07042a83fd5e63726565d2719906425 /roundcubemail | |
| parent | 0b6a58bd7036592aedccf68c76210fda200ea0bf (diff) | |
#1485157: fix DIGEST-MD5 authentication
git-svn-id: https://svn.roundcube.net/trunk@2179 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
| -rw-r--r-- | roundcubemail/program/lib/Net/SMTP.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/Net/SMTP.php b/roundcubemail/program/lib/Net/SMTP.php index a116b3bae..6e1bb0330 100644 --- a/roundcubemail/program/lib/Net/SMTP.php +++ b/roundcubemail/program/lib/Net/SMTP.php @@ -532,7 +532,7 @@ class Net_SMTP /* We don't use the protocol's third step because SMTP doesn't * allow subsequent authentication, so we just silently ignore * it. */ - if (PEAR::isError($error = $this->_put(' '))) { + if (PEAR::isError($error = $this->_put(''))) { return $error; } /* 235: Authentication successful */ |
