Objective: To query all throttling policies Get-throttlingpolicy
Exchange 2010 and 2013 can limit the number of messages sent by the user; Create a new policy rule with the Power shell command to give the Recipientratelimit and messageratelimit two parameters a certain value, The effect of limiting the amount of user sends is achieved by applying this rule to the user.
parameter Description:
messageratelimit: Limit the maximum number of messages a user can send per minute, such as exceeding the limit sent per minute, messages will stay in the Outbox, messages are delayed to the next minute, and eventually sent successfully.
recipientratelimit: Limit the maximum number of messages sent within 24 hours of the user, such as sending more than the limit, will receive an NDR return message exceeding the quota.
Note:distribution groups (including dynamic distribution groups) are counted as one recipient.
Setup steps:
1. Open the Exchange Command Manager and create a new policy rule called limitmessagessent, for example: the maximum number of users sent per day is 300, the maximum is 10 each minute, you can use the following command:
New-throttlingpolicy-name limitmessagessent -recipientratelimit -messageratelimit
< Span style= "Color:rgb (255,0,0); font-family: ' The song body '; font-size:12px;" >
650) this.width=650; "Width=" 548 "height=" 178 "class=" AlignCenter size-full wp-image-2027 "style=" margin:0px auto; padding:0px;border:0px;width:auto;height:auto;clear:both;font-size:15px;vertical-align:baseline; "alt=" 2026-1 " src= "Http://www.heminjie.com/wp-content/uploads/2015/08/1813054068.jpg"/>
2. Apply the newly created policy rule limitmessagessent to the users who need to limit the sending volume
Set-mailbox-identity "Jerry"-throttlingpolicy limitmessagessent
Extended:
Modify the limitmessagessent policy rule to send volumes of 500 and 20 per day/minute
Set-throttlingpolicy-identity Limitmessagessent-recipientratelimit 500-messageratelimit 20
View parameter values in a limitmessagessent policy rule
Get-throttlingpolicy "limitmessagessent"
Delete policy Rule limitmessagessent
Remove-throttlingpolicy–identity limitmessagessent
This article is from the "Jackysz" blog, make sure to keep this source http://jackysz.blog.51cto.com/61/1732433
exchange2010\2013 limit the number of messages that users send per minute and each day