diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-27 06:27:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-27 06:27:36 +0000 |
commit | 10bd337ff3891c96bec7719e926bd11842519c5f (patch) | |
tree | 7e3f933d577f6bf1ad9ed7a4f1c988dc91403dbe | |
parent | 4d0aae8a05ad15193bcc293ff4ec0ad10829889e (diff) | |
download | fetchmail-10bd337ff3891c96bec7719e926bd11842519c5f.tar.gz fetchmail-10bd337ff3891c96bec7719e926bd11842519c5f.tar.bz2 fetchmail-10bd337ff3891c96bec7719e926bd11842519c5f.zip |
Show message count.
svn path=/trunk/; revision=1124
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | driver.c | 2 |
2 files changed, 13 insertions, 1 deletions
@@ -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. @@ -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)", |