From bf8230f935034538dbfcbe4be9803e94ada6416d Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Tue, 4 Feb 2020 10:05:22 -0300 Subject: [PATCH] fix lmtp postmaster_address --- confd/templates/20-lmtp.conf.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confd/templates/20-lmtp.conf.tmpl b/confd/templates/20-lmtp.conf.tmpl index 529db27..0129829 100644 --- a/confd/templates/20-lmtp.conf.tmpl +++ b/confd/templates/20-lmtp.conf.tmpl @@ -1,5 +1,5 @@ protocol lmtp { # postmaster_address aparentemente es obligatorio - postmaster_address = postmaster@{{ index (split (getv "/mail/domains") " ") 0 }} + postmaster_address = postmaster@{{ index (split (index (split (getv "/mail/domains") " ") 0) ",") 0 }} mail_plugins = $mail_plugins sieve }