diff options
| author | manuel <manuel@mausz.at> | 2014-05-20 02:14:50 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2014-05-20 02:14:50 +0200 |
| commit | 3284e61d7a7a49620e64c7d634776f8bcf4f8119 (patch) | |
| tree | 5afa69959a1910936bbf5b0a2f050f5104894c84 /qmail-remote.c | |
| parent | d386103631ccee7c6b5d558311816c6aecc372e4 (diff) | |
| download | qmail-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.c | 2 |
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 | ||
