Quote:
Originally Posted by DGSO If I'm in the admin console and want to see just the account that are members of a particular class of service, how would I do that?
Thanks in advance! |
- Get the ID of the COS you are looking for
a. Click on Class of Service
b. Click on the class of service you are looking for
c. Copy the ID that is shown in the blue bar (it'll look like f9abebeb-4119-4f71-9e73-f5fc42424bbc) - Enter the LDAP search
a. You'll enter something like "(zimbracosid=yourcosid_from_step1c)"in the search bar like (excluding quotes and obviously replacing with your actual COSid
)
I know you were asking about the admin console, but if you wanted to do it from the terminal, you could do something like:
- Get the ID of the COS you're interested in
Code:
for x in $(zmprov gac); do ID=$(zmprov gc $x|grep -i "zimbraid:"|awk ' { print $2 } '); echo "$x $ID"; done - Perform the LDAP search with your COSid
Code:
zmprov sa "(zimbracosid=yourCOSId)"