Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: jwschow on November 03, 2021, 04:58:16 AM

Title: roundcube 1.5 import contacts problem
Post by: jwschow on November 03, 2021, 04:58:16 AM
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

Title: Re: roundcube 1.5 import contacts problem
Post by: alec on November 03, 2021, 08:51:26 AM
Do you have $config['address_book_type'] = 'sql'; in config?
Title: Re: roundcube 1.5 import contacts problem
Post by: jwschow on November 03, 2021, 08:51:32 PM
$config['address_book_type'] = array('sql','ldap');
Title: Re: roundcube 1.5 import contacts problem
Post by: alec on November 04, 2021, 03:01:01 AM
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:
Code: [Select]
// 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';
Title: Re: roundcube 1.5 import contacts problem
Post by: jwschow on November 04, 2021, 05:54:38 AM
You are correct.  The problem is fixed.  Thanks.  :)