Event ID: 8325 Event Category: Address List Synchronization Event Source: MSExchangeAL Event Type: Error Date: 5/1/2007 Time: 1:52:04 PM Description: The service can't work properly because Email Address Policy 'CN=XXXX,CN=Recipient Policies,CN=Corp,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=OAB,DC=com' has an invalid filter rule (PurportedSearch). The error is 'Invalid token.'. Use the Exchange Management Console to correct this problem. New users contacts and groups won't be fully provisioned until this is fixed.
[11/10/2007 2:21:49 PM] [1] Exception : Microsoft. Exchange. Configuration. MonadDataProvider. MonadDataAdapterInvocationException: The Exchange server address list service failed to respond. This could be because of an address list or email address policy configuration error. It was running command '$error. Clear(); $count=0; $ExchangeServers = Get-ExchangeServer -DomainController $RoleDomainController; foreach($server in $ExchangeServers) { if(($server. AdminDisplayVersion. Build -gt 641) -and ($server. IsMailboxServer -eq $true)) { $count++; } } if( $count -eq 1) { Set-OrganizationConfig -DomainController $RoleDomainController; }'. ---> Microsoft. Exchange. Data. Directory. RusServerUnavailableException: The Exchange server address list service failed to respond. This could be because of an address list or email address policy configuration error at Microsoft. Exchange. Data. Directory. Recipient. RecipientUpdateService. LocateServer() at Microsoft. Exchange. Configuration. Tasks. RecipientTaskHelper. ApplyRusPolicy(ADSystemConfigurationSession configurationSession. ADRecipientSession recipientSession. ADRecipient recipient. Fqdn domainController. String serverName. TaskVerboseLoggingDelegate logHandler. TaskWarningLoggingDelegate writeWarning)at Microsoft. Exchange. Configuration. Tasks. RecipientTaskHelper. ApplyRusPolicy(ADSystemConfigurationSession configurationSession. ADRecipientSession recipientSession. ADRecipient recipient. Fqdn domainController. String serverName. TaskVerboseLoggingDelegate logHandler. TaskErrorLoggingDelegate writeError. TaskErrorLoggingDelegate throwTerminatingError. TaskWarningLoggingDelegate writeWarning)
at Microsoft. Exchange. Configuration. MonadDataProvider. MonadCommand. ClosePipeline(MonadAsyncResult asyncResult)at Microsoft. Exchange. Configuration. MonadDataProvider. MonadCommand. EndExecute(MonadAsyncResult asyncResult)at Microsoft. Exchange. Management. Deployment. ComponentInfoBasedTask. ExecuteScript(Stringscript. Boolean handleError. Int32 subSteps. LocalizedString statusDescription)at Microsoft. Exchange. Management. Deployment. ComponentInfoBasedTask. GenerateAndExecuteTaskScript(InstallationCircumstances installationCircumstance)
[11/10/2007 2:21:49 PM] [1] [WARNING] An unexpected error has occurred and a Watson dump is being generated: The Exchange server address list service failed to respond. This could be because of an address list or email address policy configuration error. It was running command '$error. Clear(); $count=0; $ExchangeServers = Get-ExchangeServer -DomainController $RoleDomainController; foreach($server in $ExchangeServers) { if($server. AdminDisplayVersion. Build -gt 641) -and ($server. IsMailboxServer -eq $true)) { $count++; } } if( $count -eq 1) { Set-OrganizationConfig -DomainController $RoleDomainController; }'.
[5/18/2007 2:21:49 PM] [1] [ERROR] The Exchange server address list service failed to respond. This could be because of an address list or email address policy configuration error. It was running command '$error. Clear(); $count=0; $ExchangeServers = Get-ExchangeServer -DomainController $RoleDomainController; foreach($server in $ExchangeServers) { if(($server. AdminDisplayVersion. Build -gt 641) -and ($server. IsMailboxServer -eq $true)) { $count++; } } if( $count -eq 1) { Set-OrganizationConfig -DomainController $RoleDomainController; }'.
3. You are using an invalid LDAP search filter on your address list. LDAP queries are used in filter rules to specify the recipient membership of address lists and recipient policies. A malformed filter can cause the Recipient Update Service (in Exchange 2003) or (The RUS API's in Exchange 2007) not to process the email or recipient policy. This will cause new mailboxes in Exchange 2007 not to be created as well as your user account attributes to not update as expected.
(&(&(objectCategory=contact)(extensionAttribute1=fd)(&(&(&(|(&(objectCategory=person)(objectSid=*)(!samAccountType:1.2.840.113556.1.4.804:=3))(&(objectCategory=person)(!objectSid=*))(&(objectCategory=group)(groupType:1.2.840.113556.1.4.804:=14)))(& (mailnickname=*) (| (&(objectCategory=person)(objectClass=user)(|(homeMDB=*)(msExchHomeServerName=*))) )))(objectCategory=user)(extensionAttribute1=fd)))))
The Windows Query Engine has a limitation when you try to add groups with an 'OR' and it will break the filter. You will need to modify the filter as below if you want to also add contacts and groups to your filter.
(|(&(objectCategory=user)(extensionAttribute1=YourCustomAttribute1-10))(&(objectCategory=group)(extensionAttribute1=YourCustomAttribute1-10))(&(objectCategory=contact)(extensionAttribute1=YourCustomAttribute1-10)))
Apply this filter to the Globla Address List in choice: (&(&(|(&(objectCategory=user)(extensionAttribute1=YourCustomAttribute1-10))(&(objectCategory=group)(extensionAttribute1=YourCustomAttribute1-10))(&(objectCategory=contact)(extensionAttribute1=YourCustomAttribute1-10)))))
4. You modified an attribute of an address lists with an invalid value such as NOT SET. When the active directory resets an attribute value it will be set back to <Not Set>. In the cases that we have seen this in the object in question was the Default Global Address List.
6. The System Attendant service has not started. Some times there can be a dependency problem and the System Attendant will not start even know your other Exchange services have.
Forex Groups - Tips on Trading
Related article:
http://blogs.msdn.com/dgoldman/archive/2007/11/16/creating-a-new-mailbox-in-exchange-2007-with-the-new-mailbox-cmdlet-fails-with-address-list-service-not-available.aspx
comments | Add comment | Report as Spam
|