diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-12 12:13:24 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-12 12:15:48 +0200 |
commit | f92cccac38f877ab3537dcb489bb4a6216334f84 (patch) | |
tree | bd486bc4d4ed96fcf1c8b9748e62d0235fca26d7 /config | |
parent | 0b70f509fc3f8cdf15c8887d534d85a015851cf2 (diff) |
Add configurable LDAP_OPT_DEREF option (#1489864) - patch from Stuart C. Naifeh
Conflicts:
CHANGELOG
Diffstat (limited to 'config')
-rw-r--r-- | config/defaults.inc.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index ffce8e76a..cdddb4319 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -789,6 +789,8 @@ $config['ldap_public']['Verisign'] = array( 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit. 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit. 'referrals' => false, // Sets the LDAP_OPT_REFERRALS option. Mostly used in multi-domain Active Directory setups + 'dereference' => 0, // Sets the LDAP_OPT_DEREF option. One of: LDAP_DEREF_NEVER, LDAP_DEREF_SEARCHING, LDAP_DEREF_FINDING, LDAP_DEREF_ALWAYS + // Used where addressbook contains aliases to objects elsewhere in the LDAP tree. // definition for contact groups (uncomment if no groups are supported) // for the groups base_dn, the user replacements %fu, %u, $d and %dc work as for base_dn (see above) |