aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-11-22 07:26:03 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-11-22 07:26:03 +0000
commit4967f6bb9c5d7bb7ff3fd1cb28244a249bdea755 (patch)
treeb9d2ab66e75aae54c34870c961374f72e932409b /driver.c
parentcd932cf18d65f188c4c7d13a9c124b27a8f37f9e (diff)
downloadfetchmail-4967f6bb9c5d7bb7ff3fd1cb28244a249bdea755.tar.gz
fetchmail-4967f6bb9c5d7bb7ff3fd1cb28244a249bdea755.tar.bz2
fetchmail-4967f6bb9c5d7bb7ff3fd1cb28244a249bdea755.zip
Ready to ship, I think.
svn path=/trunk/; revision=1538
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/driver.c b/driver.c
index f6fd799f..317e7594 100644
--- a/driver.c
+++ b/driver.c
@@ -1595,27 +1595,27 @@ const struct method *proto; /* protocol method table */
/* show user how many messages we downloaded */
if (idp->id)
- (void) sprintf(buf, "%s@%s:%s",
+ (void) sprintf(buf, "%s at %s (folder %s)",
ctl->remotename, ctl->server.truename, idp->id);
else
- (void) sprintf(buf, "%s@%s", ctl->remotename, ctl->server.truename);
+ (void) sprintf(buf, "%s at %s", ctl->remotename, ctl->server.truename);
if (outlevel > O_SILENT)
if (count == -1) /* only used for ETRN */
error(0, 0, "Polling %s", ctl->server.truename);
else if (count != 0)
{
if (new != -1 && (count - new) > 0)
- error(0, 0, "%d message%s (%d seen) at %s.",
+ error(0, 0, "%d message%s (%d seen) for %s.",
count, count > 1 ? "s" : "", count-new, buf);
else
- error(0, 0, "%d message%s at %s.",
+ error(0, 0, "%d message%s for %s.",
count, count > 1 ? "s" : "", buf);
}
else
{
/* these are pointless in normal daemon mode */
if (pass == 1 && (poll_interval == 0 || outlevel == O_VERBOSE))
- error(0, 0, "No mail at %s", buf);
+ error(0, 0, "No mail for %s", buf);
}
/* very important, this is where we leave the do loop */