Summary | Editing Options for Mobile Mail requires me to relogin in MIMP |
Queue | MIMP |
Queue Version | HEAD |
Type | Bug |
State | Duplicate |
Priority | 2. Medium |
Owners | |
Requester | schwier (at) owl-hosting (dot) de |
Created | 01/30/2006 (7139 days ago) |
Due | |
Updated | 01/30/2006 (7139 days ago) |
Assigned | |
Resolved | 01/30/2006 (7139 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Duplicate
ticket 1636.State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Editing Options for Mobile Mail requires me to relogin in MIMP
Queue ⇒ MIMP
select "Edit options for: Mobil Mail" i get the MIMP login screen in
the right frame instead of the options page. I have to enter my login
in the mimp frame and then reenter the option screen to get access to
the mobile mail options.
I use the following authentication setup (nothing unusual):
$conf['auth']['driver'] = 'composite';
$conf['auth']['params']['drivers'] = array(
'imp' => array('driver' => 'application',
'params' => array('app' => 'imp')),
'mimp' => array('driver' => 'application',
'params' => array('app' => 'mimp')));
$conf['auth']['params']['loginscreen_switch'] = '_horde_select_loginscreen';
if (!function_exists('_horde_select_loginscreen')) {
function _horde_select_loginscreen()
{
require_once 'Horde/Browser.php';
$browser = new Browser();
if ($browser->isMobile()) {
return 'mimp';
}
return 'imp';
}
}
I don't know if i configured anything wrong (i don't think so), but it
should be possible to set the options for mobile mail directly without
loggin in twice (once for imp4 and once for mimp).
Note: Accessing the other option pages (Addressbook, Horde and Mail)
works as expected.