Skip to main content

Posts

Showing posts from April, 2007

Default Policy does not update all mailboxes according to the policy

If you use %g.%s@yourdomain.com as e-mail address policy criteria and you find out that not all your Users get updated with the policy but instead Alias is used, you need to check whether all user objects in Active Directory contain First Name and Last Name properties. The best way to check this in Exchange 2007 Exchange Management Console is to edit User properties under Recipient Configuration --> Mailbox --> select mailbox and click Properties Check User Information...

Default Recipient Policy update error shows legacy MS and CCMAIL address policies

After the transition to Exchange 2007 you might find that the update of objects in Active Directory fails when you try to run Update of Default Recipient Policy. You get an error stating the there are legacy Exchange address policies (CCMAIL and MS) in Default Policy and update is not actually run. If you edit Default Policy in Exchange Management Console you see that there are none of MS and CCMAIL entries in your policy. To resolve this issue you need to edit your policy in Active Directory using ADSIEdit tool and delete disabledGatewayProxy entries of MS and CCMAIL Add ADSIEdit snap-in to MMC console (Support Tools must be installed in order to be able to add ADSIEdit) Connect to Configuration Naming Context Browse to Services --> Microsoft Exchange --> YOURORGANIZATON --> Recipient Policies On the right click Properties of Default Policy Click Show only objects with entries Find disabledGatewayProxy Edit its content Remove: MS:ORGANIZATIONNAME/ORGANIZATIONNAME CCMAIL: at O

OAB download problems in Outlook 2003 on Exchange 2007

After you install Exchange 2007 in your organization wether it is "clean or transition" install of it, you could get OAB synchronization error 0X8004010F in Outlook 2003.To solve this issue you have to go to: Server Configuration --> Mailbox In Database Management window select Malbox Database or whatever name you use Select Properties Go to Client Settings Under Offline Address Book select you Default OAB OK Related links: http://blogs.msdn.com/dgoldman/archive/tags/Offline+Address+Book+Related/default.aspx

How to remove Active Directory Connectors before installing Exchange 2007

"Microsoft® Exchange Server 2007 setup cannot continue because one or more Active Directory Connectors have been found..." This is the error you get when Exchange 2007 setup tries to run /PrepareLegacyExchangePermissions command and founds out that you have one or more Active Directory Connectors (ADC) installed in your organization. You should remove all Active Directory Connectors from organization prior to installing Exchange 2007. I suggest that you first run Exchange Best Practices Analyzer with Exchange 2007 Prerequisites Check before you start with Exchange 2007 installation. To remove Active Directory Connector components To disable the ADC service on the server that is running the ADC service, right-click My Computer on the desktop, and then click Manage Expand the Services and Applications node, and then click the Services node. In the right pane, right-click Microsoft Active Directory Connector and then click Properties. Change the Startup Type to Disabled. Th

Changing the Transport Agent Priority in Exchange 2007

The default Transport Agent priorities on Hub server with anti-spam agents and ForeFront security for Exchange installed look like this: If you need to change the priority of transport agents in Exchange 2007 you can use following syntax in Exchange Management Shell: Set-TransportAgent -Identity AgentIdentity -priority Y So basically if you need SCL stamped on the message before Transport Rule processes message, you can put Content Filter Agent on top of the filters by typing: Set-TransportAgent -Identity "Content Filter Agent" -priority 1

Update Rollup 1 for Exchange 2007 is out

Microsoft released Update Rollup 1 for Exchange 2007 which includes fixes for: The Microsoft Exchange Information Store service stops unexpectedly when the Exchange Server 2007-based server replicates the Public folder The DoSnapshotSet method may stop responding in the Exchange store, and a backup application stops responding on an Exchange 2007 server Update can be downloaded here This update is NOT Exchange Service Pack 1 which is now in beta and will be out in the second half of the year. For more information about Update Rollup 1 click here

What is SafeList Aggregation in Exchange 2007 or How to help you administer Safe senders list in Exchange 2007 to fight false-positives?

" safelist aggregation refers to a set of anti-spam functionality that is shared across Microsoft Office Outlook and Exchange" - Microsoft So let's see what this functionality really is. Presume your Exchange architecture is using Hub Transport and no Edge Transport Exchange server role. You enabled Anti-spam functionality on your Hub Transport server and you created quarantine mailbox for collecting spam mails.To help you reduce instances of false-positives you can enable the SafeList Aggregation which uses Outlook's Safe senders and safe recipients, Safe Domain and External Contacts collections for Exchange's ALLOWED senders list. First, you need to send this data to Active Directory from where it can be read by Anti-spam agent on Exchange 2007 Hub or Edge Transport Exchange role.This can be done by running the Exchange Management Shell cmdlet Update-SafeList on a user's mailbox. Syntax: Update-SafeList -Identity <MailboxIdParameter> Let's say yo