From 19128cea08dca28e8981364c46c0062d597a62a3 Mon Sep 17 00:00:00 2001 From: "Felix J. Ogris" Date: Sun, 16 Aug 2026 12:37:28 +0200 Subject: [PATCH] log status line of remote host in case of successful delivery --- net.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net.c b/net.c index e8a0192..21a9e0b 100644 --- a/net.c +++ b/net.c @@ -679,6 +679,9 @@ deliver_to_host(struct qitem *it, struct mx_hostentry *host) READ_REMOTE_CHECK("final DATA", 2); complete = 1; + syslog(LOG_INFO, "remote host %s [%s] said: %s", + host->host, host->addr, neterr); + out: send_remote_command(fd, "QUIT"); if (read_remote(fd, 0, NULL) != 2)