Dynamic distribution groups These are distribution groups for which membership is based on specific recipient filters rather than a defined set of recipients. Dynamic distribution groups were called query-based distribution groups in Exchange 2003.
Source: Microsoft Exchange TechNet library
If you created query-based Distribution Group in Exchange 2003 it was filtered by using LDAP query language. Exchange 2007 is using OPATH as query language which is simpler to use than LDAP. During transition from Exchange 2003 to Exchange 2007, now called dynamic distribution groups, are not automatically converted to OPATH query-language. Query-based distribution groups work but if you want to see members from Exchange Management Shell or do something else with the group within Exchange 2007, you simply can't or the use is limited.
So, you need to convert LDAP query language to OPATH. When creating new Dynamic Distribution Group in Exchange 2007, there are some conditions (filters) you can choose from. But as you will see there are only few.
For example, if you have a query based distribution group that uses City as a filter point, then, if you check your conditions options, you will see that City is not included in the GUI. You can still use Exchange Management Shell though. To query users for dynamic distribution group that have City attribute assigned, you need to enter the opath query through Exchange Management Shell.
To change existing Dynamic Distribution Group which uses LDAP filter to use OPATH filter you use:
Set-DynamicDistributionGroup -Identity "GROUPNAME" -RecipientFilter {(Alias -ne $null -and City -like 'Ljubljana') -and -not(Name -like 'SystemMailbox{*') -and -not(Name -like 'CAS_{*')}
In this case all the users that have Ljubljana as the City attribute will be members of this Dynamic Distribution Group.
Lists of Active Directory group attributes can be found on Microsoft's web site for different operating systems but I suggest that you try the name as it is written in AD properties. For example, City in LDAP is l (L in small letters) but in OPATH you just write City (see example).
Were are running Exchange 2007...We have created two new Dynamic Distribution groups, but they are only visible and functional for DOmain Admins. When the staff opens their Address book > All Groups, there appears blank lines where the groups should be displayed. It's like they are there but not accessible. Is there something in AD (running WIndows Server 2003) that we need to change?
ReplyDeleteOut of the head, I would think of something like Inherited permissions problem. It looks like default settings are somehow changed. Unchecked permission inheritance on user object can sometimes have unusual consequences.
ReplyDeleteThank you, this was a great help.
ReplyDelete