diff --git a/notes/hist_rights.md b/notes/hist_rights.md
index 6e85f53078796933694aaa19e2d12a9843f8bc8c..cab6b0fde8f85f30a991025645658d6862190b3a 100644
--- a/notes/hist_rights.md
+++ b/notes/hist_rights.md
@@ -45,7 +45,7 @@ Détaillons ici les conditions exactes pour avoir un niveau de droit donné.
 
 #### Pour les méta-groupes
 - Un user est membre d'un méta-groupe G s'il est membre (hérité) d'un groupe simple dans G.
-- Un user est speaker d'un méta-groupe G s'il est admin strict d'un groupe simple dans G.
+- Un user est speaker d'un méta-groupe G s'il est speaker d'un groupe simple dans G.
 - Un user est admin d'un méta-groupe G s'il est admin (hérité) d'un groupe simple dans G.
 - Un user est viewer d'un méta-groupe G s'il est viewer d'un groupe simple dans G.
 
diff --git a/src/config_passport.js b/src/config_passport.js
index e78ea39d9c59eaeb7b8062058c766982791610d1..342634e2e6dfef1084da804c23c1737f0121495d 100644
--- a/src/config_passport.js
+++ b/src/config_passport.js
@@ -48,8 +48,8 @@ passport.use(new LdapStrategy({
         //tlsOptions: '..........',
         //https://www.npmjs.com/package/passport-ldapauth for more
     },
-    usernameField: ldapConfig.user.uid,
-    passwordField: ldapConfig.user.password,
+    //usernameField: 'username', // Field name where the username is found, defaults to username
+    //passwordField: 'password', // Field name where the password is found, defaults to password
 
     // no verify callback is needed, as we leave the authentication layer as simple as possible
     // we leave this, commented out, as a template for future use
diff --git a/src/graphql/models/tools.ts b/src/graphql/models/tools.ts
index 0aa22b21332a93bf193d677ca7afb7d498d3bbdf..26d0f8b9357507a2abd7c3edc7b7c763c13ecb43 100644
--- a/src/graphql/models/tools.ts
+++ b/src/graphql/models/tools.ts
@@ -70,7 +70,10 @@ export class Tools {
      */
     static async memberOfSimple(data: userData): Promise<GroupSet> {
         //Do a DFS from data.members to find all parents
-        return Tools.DFS(data.members, 'parent');
+        //return Tools.DFS(data.members, 'parent');
+
+        //No need to do DFS
+        return new GroupSet(data.members);
     }
 
     /**
@@ -95,7 +98,10 @@ export class Tools {
      */
     static async adminOfSimple(data: userData): Promise<GroupSet> {
         //Do a DFS from data.admins to find all children
-        return Tools.DFS(data.admins, 'child');
+        //return Tools.DFS(data.admins, 'child');
+
+        //No need to do DFS
+        return new GroupSet(data.admins);
     }
 
     /**
@@ -135,8 +141,8 @@ export class Tools {
      * @async
      */
     static async speakerOf(data: userData): Promise<GroupCollection> {
-        let speaker = await Tools.speakerOfSimple(data);
-        return { simpleGroups: speaker, metaGroups: await Tools.metaGroupsOfGroups(new GroupSet(data.admins)) };
+        let simple = await Tools.speakerOfSimple(data);
+        return { simpleGroups: simple, metaGroups: await Tools.metaGroupsOfGroups(simple) };
     }
 
     /**
diff --git a/src/graphql/typeDefs/actions.graphql b/src/graphql/typeDefs/actions.graphql
index 71c0eb40644a92fd29ae10f00d267b77f973c481..9fe106739adfd8abdadeab53f27331ceae4636c1 100644
--- a/src/graphql/typeDefs/actions.graphql
+++ b/src/graphql/typeDefs/actions.graphql
@@ -85,7 +85,7 @@ type Mutation {
 
     == Pour les méta-groupes ==
     - Un user est membre d'un méta-groupe G s'il est membre (hérité) d'un groupe simple dans G.
-    - Un user est speaker d'un méta-groupe G s'il est admin strict d'un groupe simple dans G.
+    - Un user est speaker d'un méta-groupe G s'il est speaker d'un groupe simple dans G.
     - Un user est admin d'un méta-groupe G s'il est admin (hérité) d'un groupe simple dans G.
     - Un user est viewer d'un méta-groupe G s'il est viewer d'un groupe simple dans G.
     
diff --git a/src/ldap/export/user.ts b/src/ldap/export/user.ts
index 97c44e1ba22e8be9ed5822bf08614dd7a608c1e7..c9c4b8d1ab9b16afbe83d6305ac9c7dc11abc1a3 100644
--- a/src/ldap/export/user.ts
+++ b/src/ldap/export/user.ts
@@ -35,7 +35,7 @@ export class User {
     static async peek(uid: string) : Promise<userData> {
         try { 
             let data = await Tools.peek<userData>("user", uid, userData);
-            for (let cat of categories) data[cat].map(dn => dn.split(',')[0].split('=')[1]);
+            for (let cat of categories) data[cat] = data[cat].map(dn => dn.split(',')[0].split('=')[1]);
             return data;
         }
         catch(err) {