summaryrefslogtreecommitdiff
path: root/lib/plugins/authldap/conf/default.php
diff options
context:
space:
mode:
authorSascha Klopp <klopp@rrzn.uni-hannover.de>2015-03-03 11:09:21 +0100
committerSascha Klopp <klopp@rrzn.uni-hannover.de>2015-03-03 11:09:21 +0100
commit6619ddf4b04390e1d1273dd79bd16bfb9eb6cf89 (patch)
tree48f65999d6ec45e5cedf376b2693b8b6518c38c0 /lib/plugins/authldap/conf/default.php
parent2f63e920cb57e8162f5460d01717e827e74ea8de (diff)
downloadrpg-6619ddf4b04390e1d1273dd79bd16bfb9eb6cf89.tar.gz
rpg-6619ddf4b04390e1d1273dd79bd16bfb9eb6cf89.tar.bz2
Two new authldap config options: 'userkey' denotes the LDAP
attribute holding the username, 'modPass' allows to disable password changing by the user.
Diffstat (limited to 'lib/plugins/authldap/conf/default.php')
-rw-r--r--lib/plugins/authldap/conf/default.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/plugins/authldap/conf/default.php b/lib/plugins/authldap/conf/default.php
index c2e462c5c..116cb9d3f 100644
--- a/lib/plugins/authldap/conf/default.php
+++ b/lib/plugins/authldap/conf/default.php
@@ -16,5 +16,7 @@ $conf['bindpw'] = '';
//$conf['mapping']['grps'] unsupported in config manager
$conf['userscope'] = 'sub';
$conf['groupscope'] = 'sub';
+$conf['userkey'] = 'uid';
$conf['groupkey'] = 'cn';
-$conf['debug'] = 0; \ No newline at end of file
+$conf['debug'] = 0;
+$conf['modPass'] = 1;