diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/src/arc.c | 2 | ||||
-rw-r--r-- | src/src/expand.c | 2 |
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; } |