summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2005-04-06 16:43:59 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2005-04-06 16:43:59 +0000
commitfed770203382d612a893e070efb774a72be341b0 (patch)
tree7fad39f2a50d0222d2a0b99d6b43f26e4bcd497b /src
parentc688b954091b55561b0c15b555b2f88c96c1a29d (diff)
Add sender to log line for DATA timeout.
Diffstat (limited to 'src')
-rw-r--r--src/src/receive.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/src/receive.c b/src/src/receive.c
index 325544643..dc0ff69a6 100644
--- a/src/src/receive.c
+++ b/src/src/receive.c
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/receive.c,v 1.13 2005/04/04 10:33:49 ph10 Exp $ */
+/* $Cambridge: exim/src/src/receive.c,v 1.14 2005/04/06 16:43:59 ph10 Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -351,8 +351,9 @@ if (smtp_input)
msg = US"SMTP incoming data timeout";
log_write(L_lost_incoming_connection,
LOG_MAIN, "SMTP data timeout (message abandoned) on connection "
- "from %s",
- (sender_fullhost != NULL)? sender_fullhost : US"local process");
+ "from %s F=<%s>",
+ (sender_fullhost != NULL)? sender_fullhost : US"local process",
+ sender_address);
}
else
{