MailTips is a one of the new features of Exchange Server 2010. When a Sender composing a message, MailTips gives the some status information of the recipient and that helps to reduces unnecessary and undeliverable e-mails, as well as reduce some embarrassing things done by senders. MailTips are hosted as an Exchange Web Services on the Client Access Server.
MailTips are work with the Scenarios given below.
Run below CMDlets on Exchange Management Shell to gather ORG settings. See figure 1.
Get-OrganizationConfig | fl *mailtips*
Figure 1
You must use “Set-OrganizationConfig” CmdLet to enable or disable mailTips. Mailtips are enabled by default. See figure 2.
Set-OrganizationConfig -MailTipsAllTipsEnabled $true
Figure 2
You must use “Set-OrganizationConfig” Cmdlet to configure large audience size. With a fresh Exchange Server 2010 installation it would be 25 by default. If we decrease it to 15, then Mailtip would be display to sender if sender add more than 15 recipients. See figure 3.
Set-OrganizationConfig -MailTipsLargeAudienceThreshold 15
Figure 3
Large Audience Threshold MailTip will display after adding more than 15 recipients . See figure 4.
Figure 4
We have some embarrassing experiences of sending some internal information to external parties. However company doesn’t want to restrict sending emails to outside domains. With MailTips at least we can give a alert to the sender before click send button. See figure 5.
Set-OrganizationConfig –MailTipsExternalRecipientsTipsEnabled $True
Figure 5
External Recipients MailTips displays when trying to send to an external domains. See figure 6.
Figure 6
Mailbox based MailTips are rely on the mailbox data. There are two Mailbox based Mailtips, The Recipient Out of Office and Mailbox Full MailTips, rely on the mailbox data. See figure 7,8 and 9 .
Set-OrganizationConfig -MailTipsMailboxSourcedTipsEnabled $true
Figure 7
The Recipient Out of Office. You can get to know if whether the recipient is out of the office before you send the email. See figure 8.
Figure 8
Mailbox Full. If recipient’s Mailbox is full, you can know that before sending the email. See figure 9.
Figure 9
MailTIps relies on Group Metrics data to provide information on the the size of distribution groups and dynamic distribution groups. Exchange server normally query a lot of LDAP requests to the Active Directory to get group membership information for each message.This could affect the the performance experienced by the users. To eliminate these issues Exchange server uses the Group Metric data. Group Metric data can be scheduled to run during office hours. You should use Set-MailboxServer CmdLet to configure Group metric Data. See figure 10.
Set-MailboxServer EX10-MB01 -GroupMetricsGenerationEnabled $true
Check out this software called "SafeSend" which shows a popup for stronger protection. Link: www.safesendsoftware.com.