what would be the correct syntax for the situation like:
base DN:
DC=example,DC=com
would want to include groups from both:
OU=Global Groups,OU=Global,DC=example,DC=com OU=E-mail Distribution Lists,OU=Email Resources,DC=example,DC=com
my current Group Object Filter (filters out curly braces - a bug in Confluence 5.1.2):
(&(objectCategory=Group)(!(CN=*{*}*)))
I understand I could create 2 directories, but my gut feeling tells me there should be a better way...
Is there any update on support for this?
Andrei,
Have you found a solution yet?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
no... I had to create 2 directories, which is a pain to maintain, but it works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
(&(objectCategory=Group)) itself should have return all the groups within both OUs. Did you want to only include certain specific groups from both OUs?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You may try the example here:
(&(objectClass=group)(|(ou:dn:=Chicago)(ou:dn:=Miami)))
Or you can use a different approch like using the infomation of another attribute to "mark" the groups you want to retrieve in your filter. i.e.:
(&(objectClass=group)(description=atlassian))
I hope this helps.
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thank you - have found this page as well and as Philip Parkinson writes - MS ActiveDirectory might be not willing to play by the rules and does not filter groups correctly... will keep digging
tried:
(&(objectClass=group)(ou:dn:=Email Resources))
=> "no results were found"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i hoped this would work - but it returns "No results were found from your search." thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Should be
(&(objectCategory=Group)(!(CN=*{*}*))(|(OU=Global Groups)(OU=E-mail Distribution Lists)))
according to this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.