Roundcube Community Forum

 

roundcube 1.5 import contacts problem

Started by jwschow, November 03, 2021, 04:58:16 AM

Previous topic - Next topic

jwschow

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


alec

Do you have $config['address_book_type'] = 'sql'; in config?

jwschow

$config['address_book_type'] = array('sql','ldap');

alec

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';

jwschow

You are correct.  The problem is fixed.  Thanks.  :)