From 503447605c1c0fff76d5656944bde03c05b609e3 Mon Sep 17 00:00:00 2001 From: mbugeia Date: Sun, 20 Jul 2014 16:11:34 +0200 Subject: [PATCH] Fix LDAP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le LDAP fonctionne mais il faudrait définir un utilisateur admin autre que celui par défaut dès l'install --- conf/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/config.php b/conf/config.php index 0d6a7be..32d5ecd 100644 --- a/conf/config.php +++ b/conf/config.php @@ -46,7 +46,7 @@ define('LDAP_ACCOUNT_BASE', 'ou=users,dc=yunohost,dc=org'); // LDAP query pattern to use when searching for a user account // Example for ActiveDirectory: '(&(objectClass=user)(sAMAccountName=%s))' // Example for OpenLDAP: 'uid=%s' -define('LDAP_USER_PATTERN', 'objectClass=uid=%s'); +define('LDAP_USER_PATTERN', 'uid=%s'); // Name of an attribute of the user account object which should be used as the full name of the user. define('LDAP_ACCOUNT_FULLNAME', 'displayName');