aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-14 16:40:21 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-14 16:40:21 +0000
commit5e5eb4e69447cbce9c9985d6bc161c68ab0dc36c (patch)
tree85501e066f3e3b24b00df32e9129dae16ef24954 /driver.c
parente72ec8a0b777fdcc929919e28f1b0893a85271b5 (diff)
downloadfetchmail-5e5eb4e69447cbce9c9985d6bc161c68ab0dc36c.tar.gz
fetchmail-5e5eb4e69447cbce9c9985d6bc161c68ab0dc36c.tar.bz2
fetchmail-5e5eb4e69447cbce9c9985d6bc161c68ab0dc36c.zip
More informative messages.
svn path=/trunk/; revision=332
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/driver.c b/driver.c
index 6c7db786..316f2203 100644
--- a/driver.c
+++ b/driver.c
@@ -660,12 +660,16 @@ struct method *proto;
/* show user how many messages we downloaded */
if (outlevel > O_SILENT && outlevel < O_VERBOSE)
if (count == 0)
- fprintf(stderr, "No mail from %s@%s\n",
- queryctl->remotename, queryctl->servername);
+ fprintf(stderr, "No mail for %s from %s@%s\n",
+ queryctl->remotename,
+ queryctl->localname,
+ queryctl->servername);
else
fprintf(stderr,
- "%d message%s from %s.\n",
+ "%d message%s from %s for %s@%s.\n",
count, count > 1 ? "s" : "",
+ queryctl->remotename,
+ queryctl->localname,
queryctl->servername);
if ((count > 0) && (!check_only))