I see that I can limit outgoing mail in Exchange 2013 to 1 a minute. Is there a way I can throttle more? Like 1 every 2 minutes? Also is there a way to limit the number of times that emails can be sent to a single recipient in a specific chunk of time?
We tried some scripting based on the following articles:
https://docs.microsoft.com/en-us/previous-versions/office/exchange-server-2010/bb232205(v=exchg.141)
https://docs.microsoft.com/en-us/powershell/module/exchange/server-health-and-performance/Set-ThrottlingPolicy?view=exchange-ps
In particular we tried this:
New-ThrottlingPolicy -Name UserLimitSent -RecipientRateLimit 50 -MessageRateLimit 1
it did not work - it seems it only works for POP3 or IMAP4 clients that use SMTP. We use Outlook and OWA.
How do we throttle Exchange 2013 with the type of granularity we are wanting?