aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-09-24 15:14:08 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-09-24 15:14:08 +0000
commit264d154656b263c434f6de3700b5b06a35206673 (patch)
tree64c3a54f71f9f49199aa0a8354c3696f8c5e267d /driver.c
parentf2556e5969e5d58f93b3dfb48975d647c5eb5924 (diff)
downloadfetchmail-264d154656b263c434f6de3700b5b06a35206673.tar.gz
fetchmail-264d154656b263c434f6de3700b5b06a35206673.tar.bz2
fetchmail-264d154656b263c434f6de3700b5b06a35206673.zip
Better logging line.
svn path=/trunk/; revision=1401
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/driver.c b/driver.c
index 7986de42..53a69523 100644
--- a/driver.c
+++ b/driver.c
@@ -1065,7 +1065,7 @@ int num; /* index of message */
/* write a line describing fetchmail's processing of the message */
sprintf(buf,
- "Received: from %s\r\n\tby %s (fetchmail-%s %s) with remote id %s\r\n",
+ "Received: from %s\r\n\tby %s (fetchmail-%s %s run by %s)\r\n",
ctl->server.truename,
fetchmailhost,
RELEASE_ID,
@@ -1081,8 +1081,9 @@ int num; /* index of message */
for (idp = xmit_names; idp; idp = idp->next)
if (idp->val.num == XMIT_ACCEPT)
{
- sprintf(buf + strlen(buf),
- "\tfor <%s@%s>; ", idp->id, desthost);
+ sprintf(buf + strlen(buf), "\tfor <%s@%s> (%s); ",
+ idp->id, desthost,
+ MULTIDROP(ctl) ? "multi-drop" : "single-drop");
break; /* only report first address */
}
}