diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-24 15:14:08 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-24 15:14:08 +0000 |
commit | 264d154656b263c434f6de3700b5b06a35206673 (patch) | |
tree | 64c3a54f71f9f49199aa0a8354c3696f8c5e267d /driver.c | |
parent | f2556e5969e5d58f93b3dfb48975d647c5eb5924 (diff) | |
download | fetchmail-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.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 */ } } |