Skip to content

Commit

Permalink
Merge pull request #1 from jobisoft/jobisoft-patch-auth_pw
Browse files Browse the repository at this point in the history
Allow to override password, but keep username (auth_cid/auth_pw)
  • Loading branch information
jobisoft committed May 19, 2015
2 parents c4ad7ed + 6f41f00 commit c3a6068
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/managesieve/lib/Roundcube/rcube_sieve.php
Expand Up @@ -77,6 +77,8 @@ public function __construct($username, $password='', $host='localhost', $port=20
if (!empty($auth_cid)) {
$authz = $username;
$username = $auth_cid;
}
if (!empty($auth_pw)) {
$password = $auth_pw;
}

Expand Down

0 comments on commit c3a6068

Please sign in to comment.