Don't hardcode domains

This commit is contained in:
Reynir Björnsson 2022-11-27 14:52:26 +01:00
parent a1e8203d55
commit b0d1c90a47
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@ services:
### Internal services ### ### Internal services ###
postfix: postfix:
file: postfix.yml file: postfix.yml
domain: "smtp.{{ base_domain }}"
version: "v3.5.0" version: "v3.5.0"
nginx_proxy: nginx_proxy:

View file

@ -17,4 +17,4 @@
env: env:
# Get all services which have allowed_sender_domain defined # 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(' ') }}" 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