summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhil Pennock <pdp@exim.org>2018-10-12 13:35:00 -0400
committerPhil Pennock <pdp@exim.org>2018-10-12 13:35:00 -0400
commit99efa4cfbe403a1e02bf4a4eb24219e557865033 (patch)
tree99d72d2f516eb7c03278ceece850e430d23fe9eb /src
parent184384c323338c577cf3da314b3d0cd94b372d8e (diff)
Rename smtp.client-ip to smtp.remote-ip
This tracks changes in the ARC draft. The Received-SPF headers remain unchanged.
Diffstat (limited to 'src')
-rw-r--r--src/src/arc.c2
-rw-r--r--src/src/expand.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/src/arc.c b/src/src/arc.c
index 64362e751..80bb30e03 100644
--- a/src/src/arc.c
+++ b/src/src/arc.c
@@ -1840,7 +1840,7 @@ if (arc_state)
US" arc.oldest-pass=", string_sprintf("%d", arc_oldest_pass));
if (sender_host_address)
- g = string_append(g, 2, US" smtp.client-ip=", sender_host_address);
+ g = string_append(g, 2, US" smtp.remote-ip=", sender_host_address);
}
else if (arc_state_reason)
g = string_append(g, 3, US" (", arc_state_reason, US")");
diff --git a/src/src/expand.c b/src/src/expand.c
index ca7d36838..adc90f633 100644
--- a/src/src/expand.c
+++ b/src/src/expand.c
@@ -1687,7 +1687,7 @@ else
return g;
if (sender_host_address)
- g = string_append(g, 2, US" smtp.client-ip=", sender_host_address);
+ g = string_append(g, 2, US" smtp.remote-ip=", sender_host_address);
return g;
}