You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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...
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.