Applies to: Exchange Server 2013
Topic Last Modified: 2012-11-12
You can use the EAC and the Shell to configure message size limits for a user mailbox. These limits control the size of messages that a user can send and receive. By default, when a mailbox is created, there isn't a size limit for sent and received messages.
Keep in mind that there are other settings in an Exchange organization that determine the maximum message size a mailbox can send and receive (for example, the maximum message size configured on a Mailbox server). To learn more about the message size restrictions in Exchange, including the types of message size limits, their scope, and the order of precedence, see Message Size Limits.
For additional management tasks related to user mailboxes, see Manage User Mailboxes.
Note: |
---|
You can also control the size of messages sent and received by mail users and from shared 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 message size limits
- In the EAC, navigate to
Recipients > Mailboxes.
- In the list of user mailboxes, click the mailbox that you want
to change the message size limits for, and then click Edit
.
- On the mailbox properties page, click Mailbox
Features.
- Under Message Size Restrictions, click View
details to view and change the following message size
limits:
- Sent messages To specify a maximum size
for messages sent by this user, select the Maximum message size
(KB) check box and type a value in the box. The message size
must be between 0 and 2,097,151 KB. If the user sends a message
larger than the specified size, the message will be returned to the
user with a descriptive error message.
- Received messages To specify a maximum
size for messages received by this user, select the Maximum
message size (KB) check box and type a value in the box. The
message size must be between 0 and 2,097,151 KB. If the user
receives a message larger than the specified size, the message will
be returned to the sender with a descriptive error message.
- Sent messages To specify a maximum size
for messages sent by this user, select the Maximum message size
(KB) check box and type a value in the box. The message size
must be between 0 and 2,097,151 KB. If the user sends a message
larger than the specified size, the message will be returned to the
user with a descriptive error message.
- Click OK, and then click Save to save your
changes.
Use the Shell to configure message size limits
This example sets the maximum size for sent messages to 25 MB and the maximum size for received messages to 35 MB for the mailbox of Debra Garcia.
Copy Code | |
---|---|
Set-Mailbox "Debra Garcia" -MaxSendSize 25mb -MaxReceiveSize 35mb |
For detailed syntax and parameter information, see Set-Mailbox.
How do you know this worked?
To verify that you’ve successfully configured message size limits 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 message size limits for, and then click Edit
.
- On the mailbox properties page, click Mailbox
Features.
- Under Message Size Restrictions, click View
details to verify the message size limits for the mailbox.
Or
Run the following command in the Shell.
Copy Code | |
---|---|
Get-Mailbox <identity> | fl MaxSendSize,MaxReceiveSize |