aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-08-02 16:06:23 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-08-02 16:06:23 +0000
commit8dc555f4b5d1dd6f515e60ef67f694a3855573cc (patch)
tree92d03bd8caeb005a6580754392cfc05c60a28efc
parentbd1e59418528c94076dfb9357a41c63a83e5401b (diff)
downloadfetchmail-8dc555f4b5d1dd6f515e60ef67f694a3855573cc.tar.gz
fetchmail-8dc555f4b5d1dd6f515e60ef67f694a3855573cc.tar.bz2
fetchmail-8dc555f4b5d1dd6f515e60ef67f694a3855573cc.zip
Suppress both forwarding and deletion on DNS errors.
svn path=/trunk/; revision=1219
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 1934e9cf..4b0ecd68 100644
--- a/driver.c
+++ b/driver.c
@@ -1597,7 +1597,7 @@ const struct method *proto; /* protocol method table */
*/
ok = readheaders(sock, len, ctl, realname);
if (ok == PS_TRANSIENT)
- suppress_delete = TRUE;
+ suppress_delete = suppress_forward = TRUE;
else if (ok == PS_REFUSED)
suppress_forward = TRUE;
else if (ok)