Summary | wrong user credentials are passed to the sieve driver |
Queue | Ingo |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 3. High |
Owners | |
Requester | adrieder (at) sbox (dot) tugraz (dot) at |
Created | 03/14/2006 (7088 days ago) |
Due | |
Updated | 03/16/2006 (7086 days ago) |
Assigned | |
Resolved | 03/14/2006 (7088 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
It should be:
$user = (isset($_SESSION['ingo']['backend']['hordeauth']) &&
$_SESSION['ingo']['backend']['hordeauth'] === 'full') ?
and not
$user = (isset($_SESSION['ingo']['backend']['hordeauth']) &&
$_SESSION['ingo']['backend']['hordeauth'] == 'full') ?
in line 110 of Ingo.php
Didi
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 3. High
Type ⇒ Bug
Summary ⇒ wrong user credentials are passed to the sieve driver
Queue ⇒ Ingo
New Attachment: Ingo.php.patch
backends.php) the wrong username is passed to the sieve driver.
The attached patch fixes the problem.