From 60c96a7cf779c92c393d0d666a8b530ae69dbd6d Mon Sep 17 00:00:00 2001 Message-Id: <60c96a7cf779c92c393d0d666a8b530ae69dbd6d.1715039607.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 17 Mar 2014 09:55:41 +0000 Subject: [PATCH] base.m4, exchange.m4: Improve key/value syntax in warnings. Organization: Straylight/Edgeware From: Mark Wooding Only just noticed `HELO name=...' which is awful; change to `helo-name=...'. Also, kill the separating commas. --- base.m4 | 2 +- exchange.m4 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base.m4 b/base.m4 index c9c04ff..90fcca6 100644 --- a/base.m4 +++ b/base.m4 @@ -143,7 +143,7 @@ mail: add_header = :after_received:X-Distorted-Warning: \ BADHELO \ Client's HELO doesn't match its IP address.\n\t\ - HELO name=$sender_helo_name, \ + helo-name=$sender_helo_name \ address=$sender_host_address ## Always allow the empty sender, so that we can receive bounces. diff --git a/exchange.m4 b/exchange.m4 index 4a7790d..e7d5fa4 100644 --- a/exchange.m4 +++ b/exchange.m4 @@ -68,7 +68,7 @@ mail_client_addr: RCLNTLSNDR \ Apparently local sender, but received from remote \ server.\n\t\ - sender=$sender_address, \ + sender=$sender_address \ host=$sender_host_address ## OK. -- [mdw]