diff options
author | Ctibor Brančík <ctibor@brancik.cz> | 2016-03-23 21:11:31 +0100 |
---|---|---|
committer | Ctibor Brančík <ctibor@brancik.cz> | 2016-03-23 21:11:31 +0100 |
commit | e32a0eee0b452399b85acdf3a185aabfe72b5785 (patch) | |
tree | 3bd011fca2cee1e1aed5d8fcdcb1ff1776d45a1a /lib/plugins/authldap/default.php | |
parent | 68656728cf13ee1317e9082ae3705ca7bb7a1392 (diff) | |
download | rpg.tar.gz rpg.tar.bz2 |
Add synced settings for various plugins.rpg
Diffstat (limited to 'lib/plugins/authldap/default.php')
-rw-r--r-- | lib/plugins/authldap/default.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/plugins/authldap/default.php b/lib/plugins/authldap/default.php new file mode 100644 index 000000000..116cb9d3f --- /dev/null +++ b/lib/plugins/authldap/default.php @@ -0,0 +1,22 @@ +<?php + +$conf['server'] = ''; +$conf['port'] = 389; +$conf['usertree'] = ''; +$conf['grouptree'] = ''; +$conf['userfilter'] = ''; +$conf['groupfilter'] = ''; +$conf['version'] = 2; +$conf['starttls'] = 0; +$conf['referrals'] = -1; +$conf['deref'] = 0; +$conf['binddn'] = ''; +$conf['bindpw'] = ''; +//$conf['mapping']['name'] unsupported in config manager +//$conf['mapping']['grps'] unsupported in config manager +$conf['userscope'] = 'sub'; +$conf['groupscope'] = 'sub'; +$conf['userkey'] = 'uid'; +$conf['groupkey'] = 'cn'; +$conf['debug'] = 0; +$conf['modPass'] = 1; |