-
Notifications
You must be signed in to change notification settings - Fork 72
Closed
Labels
Milestone
Description
Steps to reproduce
- Update 0.5.1->0.6.4
- change config.php as needed for IMAP Backend
- try login user: username@domain.ch
- Login not possible
old config.php
'user_backends' => array (
0 => array (
'class' => 'OC_User_IMAP',
'arguments' =>
array (
0 => '{localhost:143/novalidate-cert/imap/readonly}',
),
),
),
new config.php
example user: username@domain.ch
'user_backends' => array(
array(
'class' => 'OC_User_IMAP',
'arguments' => array(
'localhost', 143, null, 'domain.ch', false, false
),
),
),
Reactions are currently unavailable