xref: /plugin/pureldap/conf/metadata.php (revision 6d90d5c87387cafcb884bda8c1b3c7ab80656146)
179f39653SAndreas Gohr<?php
279f39653SAndreas Gohr/**
379f39653SAndreas Gohr * Options for the pureldap plugin
479f39653SAndreas Gohr *
579f39653SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
679f39653SAndreas Gohr */
779f39653SAndreas Gohr
8*6d90d5c8SAndreas Gohr$meta['base_dn'] = array('string');
979f39653SAndreas Gohr
101078ec26SAndreas Gohr$meta['servers'] = array('array');
111078ec26SAndreas Gohr$meta['port'] = array('string');
12*6d90d5c8SAndreas Gohr
13*6d90d5c8SAndreas Gohr$meta['encryption'] = array('multichoice', '_choices' => array('none', 'ssl', 'tls'));
14*6d90d5c8SAndreas Gohr$meta['validate'] = array('multichoice', '_choices' => array('strict','self', 'none'));
15*6d90d5c8SAndreas Gohr
161078ec26SAndreas Gohr$meta['admin_user'] = array('string');
17*6d90d5c8SAndreas Gohr$meta['admin_password'] = array('password');
18*6d90d5c8SAndreas Gohr
1979f39653SAndreas Gohr
20