From 5f830c1926b392c01303d56d68fcd49df6f744c5 Mon Sep 17 00:00:00 2001 From: Stephen Gran Date: Sat, 20 Jun 2009 13:43:31 +0100 Subject: [PATCH] delay_after_cutoff = false will allow exim to make one last gasp attempt at delivery for arriving messages even when all delivery hosts are past their cutoff time. This won't make a difference in most cases, but will eliminate the bouncing of messages without a single delivery attempt in some corner cases. Signed-off-by: Stephen Gran --- modules/exim/templates/eximconf.erb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/exim/templates/eximconf.erb b/modules/exim/templates/eximconf.erb index 46f624e60..e5f5ba7fc 100644 --- a/modules/exim/templates/eximconf.erb +++ b/modules/exim/templates/eximconf.erb @@ -1422,6 +1422,7 @@ address_reply: remote_smtp: driver = smtp connect_timeout = 1m + delay_after_cutoff = false <%= out = "" if has_variable?("exim_ssl_certs") && exim_ssl_certs == "true" @@ -1438,6 +1439,7 @@ out = ' remote_smtp_smarthost: debug_print = "T: remote_smtp_smarthost for $local_part@$domain" driver = smtp + delay_after_cutoff = false port = ' out += nodeinfo['smarthost_port'].to_s + "\n" if has_variable?("exim_ssl_certs") && exim_ssl_certs == "true" -- 2.20.1