summaryrefslogtreecommitdiff
path: root/dma.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-08-20 16:28:17 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-08-20 16:28:17 +0000
commiteb8bc5621c0e1eaeb75884f5d7f36edd90d4cd9b (patch)
tree90a9b3a163307a499ad5d62f4e8d5c515325c2af /dma.c
parent21301f73549aa63885352c5d33eadf82484c4bf7 (diff)
Import Dragonfly Mail agent snapshot from 2016-08-16vendor/dma/20160806
Notes
svn path=/vendor/dma/dist/; revision=304533 svn path=/vendor/dma/20160806/; revision=304534; tag=vendor/dma/20160806
Diffstat (limited to 'dma.c')
-rw-r--r--dma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dma.c b/dma.c
index 94fc3316f7db..b87b20245583 100644
--- a/dma.c
+++ b/dma.c
@@ -321,7 +321,7 @@ deliver(struct qitem *it)
snprintf(errmsg, sizeof(errmsg), "unknown bounce reason");
retry:
- syslog(LOG_INFO, "trying delivery");
+ syslog(LOG_INFO, "<%s> trying delivery", it->addr);
if (it->remote)
error = deliver_remote(it);
@@ -331,7 +331,7 @@ retry:
switch (error) {
case 0:
delqueue(it);
- syslog(LOG_INFO, "delivery successful");
+ syslog(LOG_INFO, "<%s> delivery successful", it->addr);
exit(EX_OK);
case 1: