Email Security/Exchange Online - Ensure MailTips Are Enabled For End Users
Summary
MailTips helps end users in identifying strange patterns to emails they send.
Reason
MailTips setting generally provide users with Visual aid whenever they send emails to large groups of recipients or send emails to the recipients not within the tenant.
How to?
To enable MailTips, use the Exchange Online PowerShell Module:
- Run Microsoft Exchange Online PowerShell Module
- Connect Using Connect-ExchangeOnline.
- Now, run the following PowerShell command-
Set-OrganizationConfig -MailTipsAllTipsEnabled $true -
MailTipsExernalRecipientsTipsEnabled $true -MailTipsGroupMetricsEnabled
$true -MailTipsLargeAudienceThreshold '25'
Monitor:
To verify MailTips are enabled, use the Exchange Online PowerShell Module:
- Run Microsoft Exchange Online PowerShell Module
- Connect Using Connect-ExchangeOnline.
- Now, run the following PowerShell command-
Get-OrganizationConfig | Select-Object MailTipsAllTipsEnabled,
MailTipsExernalRecipientsTipsEnabled, MailTipsGroupMetricsEnabled,
MailTipsLargeAudienceThreshold
4. After that, verify the values for MailTipsAllTipsEnabled, MailTipsExternalRecipientsTipsEnabled, are set to True and MailTipsLargeAudienceThreshold is set to an acceptable value; 25 is the default value.
Comments
Post a Comment