aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-11 20:39:00 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-11 20:39:00 +0000
commitb2ed4d15f7bb1c53e5be028ffd4203aa3e0ce299 (patch)
tree46bc85a759885ff540f48d5bb159abdf3929c10d /fetchmail.c
parent10cd9f323f27319df425c9f8d6c83cd3d7e41b88 (diff)
downloadfetchmail-b2ed4d15f7bb1c53e5be028ffd4203aa3e0ce299.tar.gz
fetchmail-b2ed4d15f7bb1c53e5be028ffd4203aa3e0ce299.tar.bz2
fetchmail-b2ed4d15f7bb1c53e5be028ffd4203aa3e0ce299.zip
Correct the rewrite logic.
svn path=/trunk/; revision=81
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 2a609973..726f93dc 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -385,6 +385,10 @@ struct hostrec *queryctl;
printf(" Old messages will%s be flushed before message retrieval (--flush %s).\n",
queryctl->flush ? "" : " not",
queryctl->flush ? "on" : "off");
+ printf(" Rewrite of host-local addresses is %sabled (--norewrite %s)\n",
+ queryctl->norewrite ? "dis" : "en",
+ queryctl->norewrite ? "on" : "off");
+
switch(queryctl->output)
{