Dear all,
I've installed roundcube 1.5.0. Everything works fine but I find that the contacts cannot:
1) create groups (i.e., + button is dimmed and disabled)
2) import from file to any groups (i.e., Import button is dimmed and disabled)
There are three existing groups:
LDAP Addressbook
Collected Recipients
Trusted Senders
BTW, I cannot find "Personal Addresses" group which is found in the lower version of roundcube.
Would you mind helping me?
Thanks.
--
Johnson Chow
Do you have $config['address_book_type'] = 'sql'; in config?
$config['address_book_type'] = array('sql','ldap');
This is wrong, should be $config['address_book_type'] = 'sql'; even if you have ldap addressbook enabled. Currently the option is described like the following:
// This indicates which type of address book to use. Possible choices:
// 'sql' - built-in sql addressbook enabled (default),
// '' - built-in sql addressbook disabled.
// Still LDAP or plugin-added addressbooks will be available.
// BC Note: The value can actually be anything except 'sql', it does not matter.
$config['address_book_type'] = 'sql';
You are correct. The problem is fixed. Thanks. :)