Customizing Exchange 2010 Mailtips

By admin - Last updated: Sunday, March 7, 2010 - Save & Share - Leave a Comment

We have introduced Mail Tips and seen what have new for the user. now we’ll try to configure MailTips and customize it were possible.

A friend noticed me that we also gen an alert when we try to send an email to an external recipient; it’s just that by default it doesn’t do that. This option needs to be enabled at the organization level.

With Get-OrganizationConfig | fl *mailtips* we can see the mailtips settings.

image

To activate mailtips for the external recipients we use the following command:

Set-OrganizationConfig -MailTipsExternalRecipientsTipsEnabled:$True

image

Now when I try to send an email to an external user I get the following warning in Outlook:

image

Same is happening when I try to send an email to a distribution list that contains an external recipient.

MailTipsLargeAudienceThreshold is refering to the number of members that a distribution list may contain to be considered Large Audience.

To better understand what MailTipsGroupMetricsEnabled is all about take a look here. MailTips uses Group Metrics to determine in a group is Large Audience or contains external recipients. Group Metrics runs once per day on the server that generates OAB and the only method to force it to run outside of his schedule is to restart the Exchange Service Host service. Be careful when you have Exchange 2007 together with Exchange 2010: if the OAB is generated on a Exchange 2007 server, Group Metrics will not be generated. Same is happening when OAB is distributed only via Public Folders.

The Group Metrics data are stored in a share folder named Group Metrics on the server that generates OAB, and are retrived by the CAS server through the Exchange File Distribution Service.

image

The last option we are mentioning is MailTipsMailboxSourcedTipsEnabled and is refering to object level MailTips. Object level means: mailbox, contact or group. To do this we use the parameter MailTip in the following cmdlets:

Set-Mailbox
Set-MailContact
Set-MailUser
Set-DistributionGroup
Set-DynamicDistributionGroup
Set-MailPublicFolder

In the following example I have set a description for a group, description that will be shown every time somebody tries to send an email to the group.

image

image

There’s a 250 characters limit for these MailTips and translations can be set using -MailTipTranslations parameter.

That’s all for today!

HTH

Posted in Exchange • Tags: , Top Of Page

Write a comment