1<?php 2 3/** 4 * Default settings for the pureldap plugin 5 * 6 * @author Andreas Gohr <andi@splitbrain.org> 7 */ 8 9$conf['base_dn'] = ''; 10$conf['suffix'] = ''; 11 12$conf['servers'] = array(); 13$conf['port'] = ''; 14 15$conf['encryption'] = 'none'; 16$conf['validate'] = 'strict'; 17 18$conf['admin_username'] = ''; 19$conf['admin_password'] = ''; 20 21$conf['attributes'] = array(); 22$conf['primarygroup'] = 'Domain Users'; 23$conf['recursivegroups'] = 0; 24$conf['expirywarn'] = 0; 25$conf['usefscache'] = 1; 26$conf['page_size'] = 150; 27 28$conf['sso'] = 0; 29$conf['sso_charset'] = ''; 30