this is what my ldap looks like :
- red.lan
- Groups(OU)
- Computers(SubOU)
- Printers(SubOU)
- Users(SubOU)
- Some(OU)
- Users(OU)
- SomeOther(SubOU)
So, i'm trying to make a query that would select all the groups in Users(SubOU), but not those in Groups(OU) nor any of the other subOUs of Groups(OU).
I already have a query that imports all users in Users(OU).
The actual query I have imports all groups in Groups(OU), and when i modify it, it imports the groups in Users(OU).
Query used :
ldap.synchronization.groupSearchBase=ou\=Groups,dc\=red,dc\=lan
The trick is that i have a OU named Users, and a subOU named Users too, which is why i'd like to specify that i want to import the groups of Users(SubOU) in the Groups(OU).
This query will then be used for Alfresco 4.2 (not sure it changes anything though.)
Thanks in advance !
Edit : I've tryed this query too :
ldap.synchronization.groupSearchBase=ou\=users(subou),ou\=Groups,dc\=red,dc\=lan
It doesn't work either, as it imports all Groups in the Groups OU, and not only those in Users(subou) OU.
Edit 2 : There is no brackets in the names. The real names are as follow (but in french):
- red.lan
- Groupes
- Ordinateurs
- Imprimantes
- Utilisateurs
- *Administrations
- General*
- Services
- Utilisateurs
- Administrations
I put in italics the OU I want to be imported.