Author Topic: Multiple Address Book LDAP and SQL  (Read 5112 times)

Offline AYacopino

  • Newbie
  • *
  • Posts: 5
Multiple Address Book LDAP and SQL
« 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.
« Last Edit: January 22, 2010, 01:20:05 PM by AYacopino »

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,845
Multiple Address Book LDAP and SQL
« Reply #1 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.
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and moreā€¦

Offline Omir

  • Jr. Member
  • **
  • Posts: 26
Re: Multiple Address Book LDAP and SQL
« Reply #2 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?

Offline inquisitive

  • Newbie
  • *
  • Posts: 5
Re: Multiple Address Book LDAP and SQL
« Reply #3 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 ?

Offline alec

  • Hero Member
  • *****
  • Posts: 1,363
Re: Multiple Address Book LDAP and SQL
« Reply #4 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.

Offline inquisitive

  • Newbie
  • *
  • Posts: 5
Re: Multiple Address Book LDAP and SQL
« Reply #5 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.