Author Topic: roundcube 1.5 import contacts problem  (Read 1538 times)

Offline jwschow

  • Newbie
  • *
  • Posts: 4
roundcube 1.5 import contacts problem
« 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


Offline alec

  • Hero Member
  • *****
  • Posts: 1,363
Re: roundcube 1.5 import contacts problem
« Reply #1 on: November 03, 2021, 08:51:26 AM »
Do you have $config['address_book_type'] = 'sql'; in config?

Offline jwschow

  • Newbie
  • *
  • Posts: 4
Re: roundcube 1.5 import contacts problem
« Reply #2 on: November 03, 2021, 08:51:32 PM »
$config['address_book_type'] = array('sql','ldap');

Offline alec

  • Hero Member
  • *****
  • Posts: 1,363
Re: roundcube 1.5 import contacts problem
« Reply #3 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';

Offline jwschow

  • Newbie
  • *
  • Posts: 4
Re: roundcube 1.5 import contacts problem
« Reply #4 on: November 04, 2021, 05:54:38 AM »
You are correct.  The problem is fixed.  Thanks.  :)