Like previous Exchange versions, Exchange Server 2010 also supports Storage Quota on mailboxes and public folders. Exchange Server 2010 sends quota messages to the mailbox owners when size is exceeded. We can use Exchange Management Console or PowerShell to set the storage quota on mailbox level, thereby overriding quota set on database level.
There are three kinds of Quota setting that we can set for users:-
- Issue warning at (KB)
Range is from 0 through 2,147,483,647 KB. Exchange Server sends a warning message when mailbox size reaches or exceeds the specified value.
- Prohibit sent at (KB)
Range is from 0 through 2,147,483,647 KB. Users cannot send messages once the specified limit is reached.
- Prohibit sent and receive at (KB)
Range is from 0 through 2,147,483,647 KB. Users cannot send and receive messages once the specified limit is reached.
How to use Exchange Management Console to Configure Storage Limits on a Mailbox
- Open the Exchange Management Console.
- Navigate to Recipient Configuration and click on Mailbox.
- From the detail pane, select the user for whom you want to set quota and open its Properties.
- Click on the Mailbox Settings tab.
- Click Storage Quotas and then its Properties.
- Clear the Use mailbox database defaults check box, and enter the values in the following fields-
-
- Issue warning at (KB)
- Prohibit sent at (KB)
- Prohibit sent and receive at (KB)
- Click Ok twice to save the settings.
How to Configure Quota limits from Exchange Shell
Set-Mailbox -Identity info@trenovision.com This e-mail address is being protected from spambots. You need JavaScript enabled to view it -IssueWarningQuota 209715200 -ProhibitSendQuota 262144000 -ProhibitSendReceiveQuota 293601280 -UseDatabaseQuotaDefaults $false
Above example sets the mike mailbox warning size (200 MB), prohibit send at 250 MB and prohibit send and receive limit as 280 MB respectively.