Applies to: Exchange Server 2013
Topic Last Modified: 2012-11-29
You can use the EAC or the Shell to customize the mailbox storage quotas for specific mailboxes. Storage quotas let you control the size of mailboxes and manage the growth of mailbox databases. When a mailbox reaches or exceeds a specified storage quota, Exchange sends a descriptive notification to the mailbox owner.
Storage quotas are typically configured on a per-database basis. This means that the quotas configured for a mailbox database apply to all mailboxes in that database. For more information about managing per-database mailbox settings, see Manage Mailbox Databases in Exchange 2013.
This topic shows you how to customize storage settings for a specific mailbox instead of using the storage settings from the mailbox database. For additional management tasks related to user mailboxes, see Manage User Mailboxes.
What do you need to know before you begin?
- Estimated time to complete: 2 minutes.
- You need to be assigned permissions before you can perform this
procedure or procedures. To see what permissions you need, see the
"Recipient Provisioning Permissions" section in the Recipients
Permissions topic.
- For information about keyboard shortcuts that may apply to the
procedures in this topic, see Keyboard Shortcuts in
the Exchange Admin Center.
Tip: |
---|
Having problems? Ask for help in the Exchange forums. Visit the forums at: Exchange Server, Exchange Online, or Exchange Online Protection. |
What do you want to do?
Use the EAC to configure storage quotas for a mailbox
- In the EAC, navigate to
Recipients > Mailboxes.
- In the list of user mailboxes, click the mailbox that you want
to change the storage quotas for, and then click Edit
.
- On the mailbox properties page, click Mailbox Usage, and
then click More options.
- Click Customize the settings for this mailbox, and then
configure the following boxes. The value range for any of the
storage quota settings is from 0 through 2047 gigabytes (GB).
- Issue a warning at (GB) This box
displays the maximum storage limit before a warning is issued to
the user. If the mailbox size reaches or exceeds the value
specified, Exchange sends a warning message to the user.
Important: The message associated with the Issue warning quota won’t be sent to the user unless the value of this setting is greater than 50% of the value specified in the Prohibit send quota. For example, if you set the Prohibit send quota to 8 MB, you must set the Issue warning quota to at least 4 MB. If you don’t, the Issue warning quota message won’t be sent. - Prohibit send at (GB) This box displays
the prohibit send limit for the mailbox. If the mailbox size
reaches or exceeds the specified limit, Exchange prevents the user
from sending new messages and displays a descriptive error
message.
- Prohibit send and receive at (GB) This
box displays the prohibit send and receive limit for the
mailbox. If the mailbox size reaches or exceeds the specified
limit, Exchange prevents the mailbox user from sending new messages
and won't deliver any new messages to the mailbox. Any messages
sent to the mailbox are returned to the sender with a descriptive
error message.
- Issue a warning at (GB) This box
displays the maximum storage limit before a warning is issued to
the user. If the mailbox size reaches or exceeds the value
specified, Exchange sends a warning message to the user.
- Click Save to save your changes.
Use the Shell to configure storage quotas for a mailbox
This example sets the issue warning, prohibit send, and prohibit send and receive quotas for Joe Healy's mailbox to 24.5 GB, 24.75 GB, and 25 GB respectively.
Note: |
---|
To ensure that the custom settings for the mailbox are used
rather than the mailbox database defaults, you must set the
UseDatabaseQuotaDefaults parameter to
$false . |
Copy Code | |
---|---|
Set-Mailbox -Identity "Joe Healy" -IssueWarningQuota 24.5gb -ProhibitSendQuota 24.75gb -ProhibitSendReceiveQuota 25gb -UseDatabaseQuotaDefaults $false |
This example sets the issue warning, prohibit send, and prohibit send and receive quotas for Ayla Kol's mailbox to 900 megabytes (MB), 950 MB, and 1 GB respectively, and configures the mailbox to use custom settings.
Copy Code | |
---|---|
Set-Mailbox -Identity "Ayla Kol" -IssueWarningQuota 900mb -ProhibitSendQuota 950mb -ProhibitSendReceiveQuota 1gb -UseDatabaseQuotaDefaults $false |
For detailed syntax and parameter information, see Set-Mailbox.
How do you know this worked?
To verify that you've successfully set the storage quotas for a mailbox, do one of the following:
- In the EAC, navigate to
Recipients > Mailboxes.
- In the list of user mailboxes, click the mailbox that you want
to verify the storage quotas for, and then click Edit
.
- On the mailbox properties page, click Mailbox Usage, and
then click More options.
- Verify that Customize the settings for this mailbox is
selected.
- Verify the storage quota settings.
Or
Run the following command in the Shell.
Copy Code | |
---|---|
Get-Mailbox <identity> | fl IssueWarningQuota,ProhibitSendQuota,ProhibitSendReceiveQuota,UseDatabaseQuotaDefaults |