diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-08-16 01:03:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-08-16 01:03:41 +0000 |
commit | 0dd1704fd2cb613374dd68638faaa8c5d12441b3 (patch) | |
tree | 4604052e293f0ffa1b32a0d134ab5ed422dbbe91 | |
parent | a755ecd2b0a3c8e800feeeae5fb8d6212d065266 (diff) | |
download | fetchmail-0dd1704fd2cb613374dd68638faaa8c5d12441b3.tar.gz fetchmail-0dd1704fd2cb613374dd68638faaa8c5d12441b3.tar.bz2 fetchmail-0dd1704fd2cb613374dd68638faaa8c5d12441b3.zip |
Ready for release.
svn path=/trunk/; revision=1273
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | fetchmail.c | 4 | ||||
-rw-r--r-- | fetchmail.man | 2 |
3 files changed, 5 insertions, 6 deletions
@@ -12,10 +12,13 @@ Release Notes: ------------------------------------------------------------------------------ -fetchmail-4.1.1 () +fetchmail-4.1.1 (Fri Aug 15 21:02:50 EDT 1997) * Fix an obvious bug in some snprintf calls (non-Linux systems only) * No more hard limit on number of destination headers * Wolfgang Wander's support for faster new-message detection using UIDL. +* Changed the default of the `envelope' option. + +There are 269 people on the fetchmail-friends list. fetchmail-4.1.0 (Mon Aug 11 17:19:57 EDT 1997) * Make the RPM depend on `smtpdaemon', which the sendmail package provides. diff --git a/fetchmail.c b/fetchmail.c index 858d14dc..62c8a45e 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -657,10 +657,6 @@ static int load_params(int argc, char **argv, int optind) ctl->server.queryname = xstrdup(ctl->server.pollname); ctl->server.truename = xstrdup(ctl->server.queryname); - /* plug in the semi-standard way of indicating a mail address */ - if (ctl->server.envelope == (char *)NULL) - ctl->server.envelope = "X-Envelope-To:"; - /* if no folders were specified, set up the null one as default */ if (!ctl->mailboxes) save_str(&ctl->mailboxes, -1, (char *)NULL); diff --git a/fetchmail.man b/fetchmail.man index d7fc6969..5b4dbd46 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -335,7 +335,7 @@ this is `X-Envelope-To' but as this header is not standard, practice varies. See the discussion of multidrop address handling below. As a special case, `envelope "Received"' enables parsing of sendmail-style Received lines. This is the default, and it should not be necessary -unless you have globally disable Received parsing with `no envelope' +unless you have globally disabled Received parsing with `no envelope' in the \fI.fetchmailrc\fR file. .SH USER AUTHENTICATION |