Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: AYacopino on January 22, 2010, 01:05:11 PM

Title: Multiple Address Book LDAP and SQL
Post by: AYacopino on January 22, 2010, 01:05:11 PM
I have already deployed 3 public Ldap Address Book (read only):


$rcmail_config['address_book_type'] = 'ldap';
$rcmail_config['ldap_public']['addressbook1'] = array(.....
$rcmail_config['ldap_public']['addressbook2'] = array(.....
$rcmail_config['ldap_public']['addressbook3'] = array(....

This is working.
I want to deploy a personal sql address book (write) also.
Is it posibly?How?

Andrew.
Title: Multiple Address Book LDAP and SQL
Post by: JohnDoh on January 25, 2010, 03:10:49 PM
you can set $rcmail_config['address_book_type'] as sql but then it will be your primary address book. otherwise i think you need to make a plugin.
Title: Re: Multiple Address Book LDAP and SQL
Post by: Omir on June 03, 2014, 07:45:10 AM
Is there any way for users to create/delete sql address books? Or is it limited to one address book per user?
Title: Re: Multiple Address Book LDAP and SQL
Post by: inquisitive on September 30, 2016, 08:14:28 AM
I too have the similar requirement,

i want to serve LDAP address book as global address book and give users option to maintain their personal address books.

is it possible in latest version ?
Title: Re: Multiple Address Book LDAP and SQL
Post by: alec on September 30, 2016, 08:29:58 AM
Any number of global ldap addressbooks and one sql addressbook is possible since ages. Many sql addressbooks is not possible, it could be possible with plugins. Systems like Kolab have possibility to create unlimited number of addressbooks (even with hierarchy support). This is done with a plugin, but in case of Kolab contacts aren't stored in sql, but IMAP and require Kolab server.
Title: Re: Multiple Address Book LDAP and SQL
Post by: inquisitive on October 01, 2016, 02:03:19 AM
Yes, it is .

I set
$config['address_book_type'] to ldap and was searching for personal address book.

Thx alot.