How to Adjust the Zimbra Maximum Message and Upload Size via CLI

This article show you how to check and adjust the maximum message size and upload size to an email via the Zimbra MTA (Postfix). The default Postfix message_size_limit was 10MB (10240000 bytes) and the message_size_limit postconf parameter is configured globally for all zimbra MTAs.

Q. How to Adjust the Zimbra Maximum Message and Upload Size via command line interface (CLI) ?

A. This is how to check and adjust the Maximum Message Size and upload size. All the below command shall be runa s zimbra user :

See also  How to Setup Zimbra Collaboration Suite 8.0.3 Mail Server on CentOS 6.4 x86_64

zimbraMtaMaxMessageSize = Refer to message size of the email.
zimbraFileUploadMaxSize = refer to file uploads include attachments to messages, appointments, tasks and etc.
zimbraMailContentMaxSize = Refer to the overall message size
ms = modifyServer
mcf = modifyConfig
gcf = getConfig

1. Run as zimbra user :

# su - zimbra

2. Check the default message_size_limit parameter :

$ postconf | grep message_size_limit

Example and Result:

$ postconf | grep message_size_limit
message_size_limit = 10240000

3. Check the default global size for zimbraMtaMaxMessageSize, zimbraFileUploadMaxSize and zimbraMailContentMaxSize :

$ zmprov gcf zimbraMtaMaxMessageSize
zimbraMtaMaxMessageSize: 10240000
$ zmprov gcf zimbraFileUploadMaxSize
zimbraFileUploadMaxSize: 10240000
$ zmprov gcf zimbraMailContentMaxSize
zimbraMailContentMaxSize: 10240000

4. Change zimbraMtaMaxMessageSize and zimbraFileUploadMaxSizeto 40MB (40960000 bytes) globally.

$ zmprov modifyConfig zimbraMtaMaxMessageSize 40960000
$ zmprov modifyConfig zimbraFileUploadMaxSize 40960000

5. Usually overall message size will be bigger because each message may consist multiple upload files or attachment. In this case we will configure zimbraMailContentMaxSize parameter to 100MB :

$ zmprov modifyConfig zimbraMailContentMaxSize 102400000

6. Check the result of above command :

$ postconf | grep message_size_limit
message_size_limit = 40960000

7. How to set the Maximum Message and Upload Size to 40MB per server and overall message size to 100MB per server :

$ zmprov ms `zmhostname` zimbraFileUploadMaxSize 40960000
$ zmprov ms `zmhostname` zimbraMtaMaxMessageSize 40960000
$ zmprov ms `zmhostname` zimbraMailContentMaxSize 102400000

or

$ zmprov modifyServer mail1.ehowstuff.local zimbraFileUploadMaxSize 40960000
$ zmprov modifyServer mail1.ehowstuff.local zimbraMtaMaxMessageSize 40960000
$ zmprov modifyServer mail1.ehowstuff.local zimbraMailContentMaxSize 102400000

7. In most of the cases, all of above command will take effect automatically. But if the change does not happen after a short period of time, most likely we will need to do postfix reload or full zmcontrol restart :

$ postfix reload
$ zmcontrol restart

Note : Server settings override global setting

Comments

1 Comment

Leave a Reply

Your email address will not be published. Required fields are marked *