From 10bd337ff3891c96bec7719e926bd11842519c5f Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 27 Jun 1997 06:27:36 +0000 Subject: Show message count. svn path=/trunk/; revision=1124 --- NEWS | 12 ++++++++++++ driver.c | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 07e509ff..29df7290 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,11 @@ return a zero exit status if *any* host had mail, not just the last one checked. +* Remove restriction that no two poll entries can have identical hostnames? + The problem is with a skip entry following a poll entry for the same host. + This corrupts a data structure leading to core dump, but I'm not sure + exactly how. + * Generate bounce messages when delivery is refused. See RFC1891, RFC1894. * More log levels? @@ -19,6 +24,13 @@ Release Notes: ------------------------------------------------------------------------------ +fetchmail-4.0.0 () + +* Fixes for minor compilation glitches. +* Progress messages now show total count as well as message number. + +There are 248 people on the fetchmail-friends list. + pl 3.9.9 (Wed Jun 25 11:01:51 EDT 1997): * We can now process multiple To headers a la Microsoft Exchange Server. * Avoid sending LIST and getting an error when no messages are waiting. diff --git a/driver.c b/driver.c index 95f8eab4..c0768e6a 100644 --- a/driver.c +++ b/driver.c @@ -1498,7 +1498,7 @@ const struct method *proto; /* protocol method table */ if (outlevel > O_SILENT) { - error_build("reading message %d", num); + error_build("reading message %d of %d",num,count); if (len > 0) error_build(" (%d %sbytes)", -- cgit v1.2.3