summaryrefslogtreecommitdiffstats
path: root/qmail-remote.c
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2014-05-20 02:14:50 +0200
committermanuel <manuel@mausz.at>2014-05-20 02:14:50 +0200
commit3284e61d7a7a49620e64c7d634776f8bcf4f8119 (patch)
tree5afa69959a1910936bbf5b0a2f050f5104894c84 /qmail-remote.c
parentd386103631ccee7c6b5d558311816c6aecc372e4 (diff)
downloadqmail-3284e61d7a7a49620e64c7d634776f8bcf4f8119.tar.gz
qmail-3284e61d7a7a49620e64c7d634776f8bcf4f8119.tar.bz2
qmail-3284e61d7a7a49620e64c7d634776f8bcf4f8119.zip
Treat ECONNREFUSED the same as ETIMEDOUT
After an SMTP connection attempt times out, qmail-remote records the relevant IP address. If the same address fails again (after at least two minutes with no intervening successful connections), qmail-remote assumes that further attempts will fail for at least another hour.
Diffstat (limited to 'qmail-remote.c')
-rw-r--r--qmail-remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmail-remote.c b/qmail-remote.c
index dc00d08..b865b4d 100644
--- a/qmail-remote.c
+++ b/qmail-remote.c
@@ -951,7 +951,7 @@ char **argv;
951#endif 951#endif
952 smtp(); /* only returns when the next MX is to be tried */ 952 smtp(); /* only returns when the next MX is to be tried */
953 } 953 }
954 tcpto_err(&ip.ix[i].ip,errno == error_timeout); 954 tcpto_err(&ip.ix[i].ip,errno == error_timeout || errno == error_refused);
955 close(smtpfd); 955 close(smtpfd);
956 } 956 }
957 957