summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_imap_generic.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-02-19 18:04:04 +0100
committerThomas Bruederli <thomas@roundcube.net>2014-02-19 18:04:04 +0100
commit128fd9861a2fa755c4684c2700eb6197cb0be484 (patch)
treec9b182de2dce32ecc90d8fb59d804ca0f07fa655 /program/lib/Roundcube/rcube_imap_generic.php
parent37b9e026486a5e487bcc1fc502b71ad817c32427 (diff)
Declare LOGIN commands to be anonymized in debug logging
Diffstat (limited to 'program/lib/Roundcube/rcube_imap_generic.php')
-rw-r--r--program/lib/Roundcube/rcube_imap_generic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_imap_generic.php b/program/lib/Roundcube/rcube_imap_generic.php
index 9035840a8..4cb61e95d 100644
--- a/program/lib/Roundcube/rcube_imap_generic.php
+++ b/program/lib/Roundcube/rcube_imap_generic.php
@@ -633,7 +633,7 @@ class rcube_imap_generic
function login($user, $password)
{
list($code, $response) = $this->execute('LOGIN', array(
- $this->escape($user), $this->escape($password)), self::COMMAND_CAPABILITY);
+ $this->escape($user), $this->escape($password)), self::COMMAND_CAPABILITY | self::COMMAND_ANONYMIZED);
// re-set capabilities list if untagged CAPABILITY response provided
if (preg_match('/\* CAPABILITY (.+)/i', $response, $matches)) {