Fix incorrect address book name.

This commit is contained in:
Zhang Huangbin 2016-03-24 13:47:00 +08:00
parent 103f02d930
commit e3b6ae0abd
2 changed files with 6 additions and 6 deletions

View File

@ -326,15 +326,15 @@ address book setting added by iRedMail, and add new setting for AD like below:
```php ```php
# #
# "sql" is personal address book stored in roundcube database. # "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. # Global LDAP Address Book with AD.
# #
$config['ldap_public']["global_ldap_abook"] = array( $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. 'hosts' => array("ad.example.com"), // <- Set AD hostname or IP address here.
'port' => 389, 'port' => 389,
'use_tls' => false, // <- Set to true if you want to use LDAP over TLS. 'use_tls' => false, // <- Set to true if you want to use LDAP over TLS.

View File

@ -319,15 +319,15 @@ address book setting added by iRedMail, and add new setting for AD like below:</
</ul> </ul>
<pre><code class="php"># <pre><code class="php">#
# &quot;sql&quot; is personal address book stored in roundcube database. # &quot;sql&quot; is personal address book stored in roundcube database.
# &quot;example.com&quot; is new LDAP address book with AD, we will create it below. # &quot;global_ldap_abook&quot; is the new LDAP address book for AD, we will create it below.
# #
$config['autocomplete_addressbooks'] = array(&quot;sql&quot;, &quot;example.com&quot;); $config['autocomplete_addressbooks'] = array(&quot;sql&quot;, &quot;global_ldap_abook&quot;);
# #
# Global LDAP Address Book with AD. # Global LDAP Address Book with AD.
# #
$config['ldap_public'][&quot;global_ldap_abook&quot;] = array( $config['ldap_public'][&quot;global_ldap_abook&quot;] = array(
'name' =&gt; 'Global LDAP Address Book', 'name' =&gt; 'Global Address Book',
'hosts' =&gt; array(&quot;ad.example.com&quot;), // &lt;- Set AD hostname or IP address here. 'hosts' =&gt; array(&quot;ad.example.com&quot;), // &lt;- Set AD hostname or IP address here.
'port' =&gt; 389, 'port' =&gt; 389,
'use_tls' =&gt; false, // &lt;- Set to true if you want to use LDAP over TLS. 'use_tls' =&gt; false, // &lt;- Set to true if you want to use LDAP over TLS.