diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-09-21 11:50:57 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-09-21 11:50:57 +0200 |
commit | 221b407307d6b3f32a44788085c2076952303a77 (patch) | |
tree | a53fdb5c4584e37513b171dc0bab62f3e2688fdc | |
parent | f1fba2d7fb955c7897d9cb4a2dce9ec21e981214 (diff) |
Add comment that to use LDAP variables in bind_dn/base_dn user_specific must be enabled (#1489335)
-rw-r--r-- | config/defaults.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/defaults.inc.php b/config/defaults.inc.php index 314150f50..874621d1d 100644 --- a/config/defaults.inc.php +++ b/config/defaults.inc.php @@ -646,6 +646,7 @@ $config['ldap_public']['Verisign'] = array( 'ldap_version' => 3, // using LDAPv3 'network_timeout' => 10, // The timeout (in seconds) for connect + bind arrempts. This is only supported in PHP >= 5.3.0 with OpenLDAP 2.x 'user_specific' => false, // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login. + // When 'user_specific' is enabled following variables can be used in base_dn/bind_dn config: // %fu - The full username provided, assumes the username is an email // address, uses the username_domain value if not an email address. // %u - The username prior to the '@'. |