summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2018-04-04 16:15:22 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2018-04-04 16:15:22 +0100
commitd31eceff66d5dfc5a901846c6c3fd60f13ca8718 (patch)
treef9efc3a3f72226e9b6a8cd2ca46991046b8fbfc1 /src
parent4398228719841b08524520b8c07faeb3bee89705 (diff)
Add client-ip info to iprev ${authres } line
Diffstat (limited to 'src')
-rw-r--r--src/src/expand.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/src/expand.c b/src/src/expand.c
index 10fadfd89..a5ddb277d 100644
--- a/src/src/expand.c
+++ b/src/src/expand.c
@@ -1672,7 +1672,9 @@ static gstring *
authres_iprev(gstring * g)
{
if (sender_host_name)
- return string_append(g, 3, US";\n\tiprev=pass (", sender_host_name, US")");
+ return string_append(g, sender_host_address ? 5 : 3,
+ US";\n\tiprev=pass (", sender_host_name, US")",
+ US" smtp.client-ip=", sender_host_address);
if (host_lookup_deferred)
return string_catn(g, US";\n\tiprev=temperror", 19);
if (host_lookup_failed)