LDAP Authentication
TeamCal Neo also supports LDAP authentication for all users but 'admin''.
define('LDAP_YES', 1); // Use LDAP authentication
define('LDAP_ADS', 0); // Set to 1 when authenticating against an Active Directory
define('LDAP_HOST', "ldap.forumsys.com"); // LDAP host name
define('LDAP_PORT', "389"); // LDAP port
define('LDAP_PASS', "password"); // SA associated password
define('LDAP_DIT', "cn=read-only-admin,dc=example,dc=com"); // Directory Information Tree (Relative Distinguished Name)
define('LDAP_SBASE', "dc=example,dc=com"); // Search base, location in the LDAP directory to search
define('LDAP_TLS', 0); // To avoid "Undefined index: LDAP_TLS" error message for LDAP bind to Active Directory
define('LDAP_CHECK_ANONYMOUS_BIND', 0); // Set to 1 to check the LDAP server's 'anonymous bind' setting. Connection will be refused if not allowed.Last updated