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.
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.
Is there any way for users to create/delete sql address books? Or is it limited to one address book per user?
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 ?
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.
Yes, it is .
I set
$config['address_book_type'] to ldap and was searching for personal address book.
Thx alot.