Book Image

Microsoft Exchange 2013 Cookbook

Book Image

Microsoft Exchange 2013 Cookbook

Overview of this book

Table of Contents (21 chapters)
Microsoft Exchange 2013 Cookbook
Credits
About the Author
Acknowledgments
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Configuring message size limits


This section explains us configuring message size limits.

Getting ready

To execute the following steps, log in to the Exchange Admin Center or launch the Exchange Management Shell.

How to do it...

The steps are explained in the following sections.

Configuring message size limits at organizational level

The following command will set the default organizational message size limits to 35 MB and will also limit the maximum amount of recipients per message to 250:

Set-TransportConfig –MaxReceiveSize "35MB" –MaxSendSize "35MB" –MaxRecipientEnvelopeLimit "250"

Perform the following steps through the EAC:

  1. Navigate to mail flow | receive connectors.

  2. Click the three dots (...) to show more options and click organization transport settings.

  3. Configure the limits as follows:

    • Maximum number of recipients: 250

    • Maximum receive message size (MB): 35

    • Maximum send message size (MB): 35

  4. Click on save.

Configuring message size limits at connector level

The following command will configure...