Notifications
Clear all
Topic starter
04/07/2023 11:08
Is it possible to limit the mail sending size and attachment size? It’s a very basic and required feature for an organization. Please help me on this.
Regards,
Elias
Topic starter
04/09/2023 05:13
We want to restrict email, attachment, and file upload sizes. Users cannot upload and attach a file of more than the defined size. Mail size should be limited to the defined size.
Regards,
Elias
05/16/2023 21:12
I was trying to figure it out as well. Here is what you need to do:
Run this as zextras:
$ postconf message_size_limit
It should come back with
message_size_limit = 10240000
To change it, as the zextras user (BTW 20000000 is 20 MB):
$ zmprov modifyConfig zimbraMtaMaxMessageSize 20000000 $ postfix reload
Then run:
$ postconf message_size_limit
It should come back with:
message_size_limit = 20000000
Good luck!
Arman Khosravi reacted