//
// LDAP configuration
//
// enable(1) or disable(0) ldap use altogether
$sys_ldap_host='{ldap_host}';
$sys_ldap_port=389;
$sys_ldap_version=3;
// this is dn under which all information stored
$sys_ldap_base_dn='{ldap_base_dn}';
// and this, how we do access it (add permission required)
$sys_ldap_bind_dn='cn=SF_robot,{ldap_base_dn}';
// admin dn - login dn which has permissions to delete entries
// NOT used by web code, only by support utilities
// note that password NOT stored here
$sys_ldap_admin_dn='cn=admin,{ldap_base_dn}';

