From 92f62e64685ffbc08ea660e51bf3428c110b647c Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Thu, 22 Oct 2020 20:42:31 +0200 Subject: fix strip trailing space in _postconf wrapper --- postfix/postfix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postfix/postfix.sh b/postfix/postfix.sh index 061a547..135775a 100755 --- a/postfix/postfix.sh +++ b/postfix/postfix.sh @@ -196,7 +196,7 @@ fi confdir=/etc/postfix _postconf() { - postconf -c "$tempdir" "$1" "$(echo "$2" | tr '\n' ' ')" + postconf -c "$tempdir" "$1" "$(echo "$2" | tr '\n' ' ' | sed -e 's/ $//')" } postmapfiles= -- cgit v1.2.3