diff --git a/conf/config.php b/conf/config.php index 4254b94..748a943 100644 --- a/conf/config.php +++ b/conf/config.php @@ -3,6 +3,12 @@ // Enable/Disable debug define('DEBUG', false); +// Debug file path +define('DEBUG_FILE', __DIR__.'/data/debug.log'); + +// Folder for uploaded files, don't forget the trailing slash +define('FILES_DIR', 'data/files/'); + // E-mail address for the "From" header (notifications) define('MAIL_FROM', 'yuno_email'); @@ -74,6 +80,15 @@ define('LDAP_ACCOUNT_FULLNAME', 'displayname'); // Name of an attribute of the user account object which should be used as the email of the user. define('LDAP_ACCOUNT_EMAIL', 'mail'); +// Name of an attribute of the user account object which should be used as the id of the user. +// Example for ActiveDirectory: 'samaccountname' +// Example for OpenLDAP: 'uid' +define('LDAP_ACCOUNT_ID', 'samaccountname'); + +// By default Kanboard lowercase the ldap username to avoid duplicate users (the database is case sensitive) +// Set to true if you want to preserve the case +define('LDAP_USERNAME_CASE_SENSITIVE', false); + // Enable/disable Google authentication define('GOOGLE_AUTH', false);