fix go templates
This commit is contained in:
parent
e6afdff4c8
commit
25fa394b99
@ -1,5 +1,5 @@
|
||||
auth_realms = {{ getv "/mail/domains" }}
|
||||
auth_default_realm = {{ first 1 (split (getv "/mail/domains") " ") }}
|
||||
auth_default_realm = {{ index (split (getv "/mail/domains") " ") 1 }}
|
||||
auth_username_format = {{ getv "/auth/username/format" }}
|
||||
auth_mechanisms = {{ getv "/auth/mechanisms" }}
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
protocol lmtp {
|
||||
# postmaster_address aparentemente es obligatorio
|
||||
postmaster_address = postmaster@{{ first 1 (split (getv "/mail/domains") " ") }}
|
||||
postmaster_address = postmaster@{{ index (split (getv "/mail/domains") " ") 1 }}
|
||||
mail_plugins = $mail_plugins sieve
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user