Exim message limit

jca

Verified User
Joined
Oct 31, 2006
Messages
306
Location
Allen, TX
Hello,

I would like to configure Custombuild to take care of my Exim configurations, yet I'm unable as currently the default DirectAdmin configuration dictates a 20M message size limit, while my customers like something bigger (around 50M) since otherwise some emails from GMail and other email clients support higher limits.

Any idea if there's any way to change and keep some variables with different values between versions?

Thanks

Jose
 
Hello,

Switch to CB 2.x and use exim.conf 4.3 with a possibility to change variables in /etc/exim.variables.conf.custom. The defaults are (/etc/exim.variables.conf):

Code:
#Do not edit this file directly
#edit /etc/exim.variables.conf.custom
disable_ipv6=true
message_size_limit=20M
smtp_receive_timeout=5m
smtp_accept_max=100
message_body_visible=3000
print_topbitchars=true
smtp_accept_max_nonmail=10
smtp_accept_max_per_host=10
recipients_max=150
smtp_accept_queue_per_connection=10
smtp_accept_max_per_connection=100
deliver_queue_load_max=5.0
queue_only_load=7.5
queue_run_max=5
ignore_bounce_errors_after=2d
timeout_frozen_after=3d
trusted_users=mail:majordomo:apache:diradmin

Related: http://help.directadmin.com/item.php?id=576
 
Back
Top