From 264d154656b263c434f6de3700b5b06a35206673 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 24 Sep 1997 15:14:08 +0000 Subject: Better logging line. svn path=/trunk/; revision=1401 --- driver.c | 7 ++++--- 1 file 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 */ } } -- cgit v1.2.3