11 lines
325 B
Cheetah
11 lines
325 B
Cheetah
# "no-reply" mail aliases.
|
|
# DO NOT edit this file, it will be overwritten.
|
|
# Instead, set the variable NOREPLY_ALIASES
|
|
{{ range split (getv "/noreply/aliases") " " }}
|
|
{{ if (strings.Contains . "@") }}
|
|
{{.}} _dev_null
|
|
{{ else }}
|
|
{{.}}@{{ index (split (getv "/virtual/mailbox/domains") " ") 0 }} _dev_null
|
|
{{ end }}
|
|
{{ end }}
|