forked from data.coop/ansible
Don't hardcode domains (#129)
Co-authored-by: Reynir Björnsson <reynir@reynir.dk> Reviewed-on: data.coop/ansible#129 Co-authored-by: reynir <data.coop@reynir.dk> Co-committed-by: reynir <data.coop@reynir.dk>
This commit is contained in:
parent
a1e8203d55
commit
e45eb02208
|
@ -6,6 +6,7 @@ services:
|
|||
### Internal services ###
|
||||
postfix:
|
||||
file: postfix.yml
|
||||
domain: "smtp.{{ base_domain }}"
|
||||
version: "v3.5.0"
|
||||
|
||||
nginx_proxy:
|
||||
|
|
|
@ -17,4 +17,4 @@
|
|||
env:
|
||||
# Get all services which have allowed_sender_domain defined
|
||||
ALLOWED_SENDER_DOMAINS: "{{ services | dict2items | selectattr('value.allowed_sender_domain', 'true') | map(attribute='value.domain') | join(' ') }}"
|
||||
HOSTNAME: "smtp.{{ base_domain }}" # the name the smtp server will identify itself as
|
||||
HOSTNAME: "{{ services.postfix.domain }}" # the name the smtp server will identify itself as
|
||||
|
|
Loading…
Reference in a new issue