aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-02-17 04:38:39 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-02-17 04:38:39 +0000
commitdb2cdc170df42f155fa63012fdaf0b7b9fc73ce9 (patch)
treea1d4f3882f2055152b26c36c64324f202f4db9ae /fetchmail.c
parent1bf8bb4b2751ef3d4007221cbe0e9bc39de34117 (diff)
downloadfetchmail-db2cdc170df42f155fa63012fdaf0b7b9fc73ce9.tar.gz
fetchmail-db2cdc170df42f155fa63012fdaf0b7b9fc73ce9.tar.bz2
fetchmail-db2cdc170df42f155fa63012fdaf0b7b9fc73ce9.zip
Lose the `received' option; we now say `no envelope'.
svn path=/trunk/; revision=893
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 2522bbf9..417f0424 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -652,7 +652,6 @@ static int load_params(int argc, char **argv, int optind)
DEFAULT(ctl->rewrite, TRUE);
DEFAULT(ctl->stripcr, (ctl->mda != (char *)NULL));
DEFAULT(ctl->server.dns, TRUE);
- DEFAULT(ctl->server.received, TRUE);
#undef DEFAULT
/* plug in the semi-standard way of indicating a mail address */
@@ -906,12 +905,12 @@ void dump_params (struct query *ctl)
printf(" DNS lookup for multidrop addresses is %sabled.\n",
ctl->server.dns ? "en" : "dis",
ctl->server.dns ? "off" : "on");
- printf(" Received-line parsing for envelope addresses is %sabled.\n",
- ctl->server.received ? "en" : "dis",
- ctl->server.received ? "off" : "on");
if (count > 1)
- printf(" Envelope header is assumed to be: %s\n", ctl->server.envelope);
+ if (ctl->server.envelope == STRING_DISABLED)
+ printf(" Envelope-address routing is disabled\n");
+ else
+ printf(" Envelope header is assumed to be: %s\n", ctl->server.envelope);
}
#ifdef linux
if (ctl->server.interface)