From e3b6ae0abd44ecb5d9e44d7023f9be9d03f8ce13 Mon Sep 17 00:00:00 2001 From: Zhang Huangbin Date: Thu, 24 Mar 2016 13:47:00 +0800 Subject: [PATCH] Fix incorrect address book name. --- en_US/integrations/active.directory.md | 6 +++--- html/active.directory.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/en_US/integrations/active.directory.md b/en_US/integrations/active.directory.md index 8c883039..89cebf22 100644 --- a/en_US/integrations/active.directory.md +++ b/en_US/integrations/active.directory.md @@ -326,15 +326,15 @@ address book setting added by iRedMail, and add new setting for AD like below: ```php # # "sql" is personal address book stored in roundcube database. -# "example.com" is new LDAP address book with AD, we will create it below. +# "global_ldap_abook" is the new LDAP address book for AD, we will create it below. # -$config['autocomplete_addressbooks'] = array("sql", "example.com"); +$config['autocomplete_addressbooks'] = array("sql", "global_ldap_abook"); # # Global LDAP Address Book with AD. # $config['ldap_public']["global_ldap_abook"] = array( - 'name' => 'Global LDAP Address Book', + 'name' => 'Global Address Book', 'hosts' => array("ad.example.com"), // <- Set AD hostname or IP address here. 'port' => 389, 'use_tls' => false, // <- Set to true if you want to use LDAP over TLS. diff --git a/html/active.directory.html b/html/active.directory.html index 73717a36..97769364 100644 --- a/html/active.directory.html +++ b/html/active.directory.html @@ -319,15 +319,15 @@ address book setting added by iRedMail, and add new setting for AD like below:
#
 # "sql" is personal address book stored in roundcube database.
-# "example.com" is new LDAP address book with AD, we will create it below.
+# "global_ldap_abook" is the new LDAP address book for AD, we will create it below.
 #
-$config['autocomplete_addressbooks'] = array("sql", "example.com");
+$config['autocomplete_addressbooks'] = array("sql", "global_ldap_abook");
 
 #
 # Global LDAP Address Book with AD.
 #
 $config['ldap_public']["global_ldap_abook"] = array(
-    'name'          => 'Global LDAP Address Book',
+    'name'          => 'Global Address Book',
     'hosts'         => array("ad.example.com"),      // <- Set AD hostname or IP address here.
     'port'          => 389,
     'use_tls'       => false,   // <- Set to true if you want to use LDAP over TLS.