confd #1

Manually merged
mauro merged 30 commits from confd into master 2019-09-11 02:17:10 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit b500a00528 - Show all commits

View File

@ -1,5 +1,5 @@
auth_realms = {{ getv "/mail/domains" }}
auth_default_realm = {{ index (split (getv "/mail/domains") " ") 1 }}
auth_default_realm = {{ index (split (getv "/mail/domains") " ") 0 }}
auth_username_format = {{ getv "/auth/username/format" }}
auth_mechanisms = {{ getv "/auth/mechanisms" }}

View File

@ -1,5 +1,5 @@
protocol lmtp {
# postmaster_address aparentemente es obligatorio
postmaster_address = postmaster@{{ index (split (getv "/mail/domains") " ") 1 }}
postmaster_address = postmaster@{{ index (split (getv "/mail/domains") " ") 0 }}
mail_plugins = $mail_plugins sieve
}