aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-09-05 16:04:11 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-09-05 16:04:11 +0000
commit15591c53ff9eaea05b6ba6cb387bd7b8e492d292 (patch)
treed4d530ecda45081de8b2f9fa027ac8b10ae0ea3d
parente37237500eed0160b7dcff141acf2472fa5ac991 (diff)
downloadfetchmail-15591c53ff9eaea05b6ba6cb387bd7b8e492d292.tar.gz
fetchmail-15591c53ff9eaea05b6ba6cb387bd7b8e492d292.tar.bz2
fetchmail-15591c53ff9eaea05b6ba6cb387bd7b8e492d292.zip
Fall back on localhost.
svn path=/trunk/; revision=1307
-rw-r--r--NEWS13
-rw-r--r--fetchmail.c1
2 files changed, 13 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 20f14cdd..373064a5 100644
--- a/NEWS
+++ b/NEWS
@@ -16,11 +16,22 @@
Release Notes:
------------------------------------------------------------------------------
-fetchmail-4.1.3 (Thu Sep 4 15:41:05 EDT 1997)
+
+fetchmail-4.1.5 ()
+* Prevent core dumps on messages with no destination lines.
+* Decorate RCPT TO names with smtphost.
+* Have AUTO mode croak on SMTP error.
+* Fall back on localhost if smtphost is defaulted and `hostname` is not
+ DNS-accessible.
+
+There are 286 people on the fetchmail-friends list.
+
+fetchmail-4.1.4 (Thu Sep 4 15:41:05 EDT 1997)
* Autoconfigure correctly for systems that lack inet_aton().
* Better failure reporting on SMTP connect failures.
* Autoconfigure the MD5 support for 64-bit machines.
+Due to pilot error, there was no release actually numbered 4.1.3.
There are 286 people on the fetchmail-friends list.
fetchmail-4.1.2 (Wed Sep 3 18:44:58 EDT 1997)
diff --git a/fetchmail.c b/fetchmail.c
index 1f136098..4730e1e7 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -530,6 +530,7 @@ static int load_params(int argc, char **argv, int optind)
def_opts.server.timeout = CLIENT_TIMEOUT;
def_opts.remotename = user;
save_str(&def_opts.smtphunt, -1, fetchmailhost);
+ save_str(&def_opts.smtphunt, -1, "localhost");
/* this builds the host list */
if (prc_parse_file(rcfile, !versioninfo) != 0)