Exchange Server – Anti-Spam Recipient Filtering

5d05eb33135798a962e3199db1fa4a4c
5d05eb33135798a962e3199db1fa4a4c

Estimated reading time: 1 minutes

If you want to add multiple specific email addresses to your Exchange Anti-Spam Recipient Filtering then you can use Exchange Management Shell to run a command to add comma separated multiple email addresses.

The command you should run is this:

 Set-RecipientFilterConfig -BlockedRecipients joe@bloggs.com,steve@techygeekshome.info,bob@mail.com  

You can keep adding email addresses to the list for what you require.

Something to keep in mind though, when you use this method, it will remove whatever you have in the list currently. To get around this you can use this script:

 $Configuration = Get-RecipientFilterConfig  
 $Configuration.BlockedRecipients += "joe@bloggs.com,steve@techygeekshome.info,bob@mail.com"  
 Set-RecipientFilterConfig -BlockedRecipients $Configuration.BlockedRecipients  

If you want the shell command to enable the recipient filtering then you can use this:

 Set-RecipientFilterConfig -BlockListEnabled $true  

To block messages to recipients that don’t exist in your organization, run the following command:

 Set-RecipientFilterConfig -RecipientValidationEnabled $true  

COMMENTS

If you have any questions or comments on this guide, please feel free to leave us a message below using our comments system and we will try to get back to you as soon as we can.

Share this content:

Click to rate this post!
[Total: 0 Average: 0]
Avatar for Andrew Armstrong

About Andrew Armstrong

Founder of TechyGeeksHome and Head Editor for over 15 years! IT expert in multiple areas for over 26 years. Sharing experience and knowledge whenever possible! Making IT Happen.

View all posts by Andrew Armstrong

Leave a Reply

Your email address will not be published. Required fields are marked *