Fix a typo.
This commit is contained in:
parent
37ff06f4ab
commit
076dcd24e6
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
- name: POSTSRSD configuration
|
- name: POSTSRSD configuration
|
||||||
block:
|
block:
|
||||||
- name: Install the postsrsd secret. After the first start of the service
|
- name: Install the postsrsd secret.
|
||||||
template:
|
template:
|
||||||
src: postsrsd.secret.j2
|
src: postsrsd.secret.j2
|
||||||
dest: '{{ postfix_srs_secret_file }}'
|
dest: '{{ postfix_srs_secret_file }}'
|
||||||
|
|
|
@ -41,7 +41,9 @@ smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
|
||||||
myhostname = {{ ansible_fqdn }}
|
myhostname = {{ ansible_fqdn }}
|
||||||
alias_maps = hash:/etc/aliases
|
alias_maps = hash:/etc/aliases
|
||||||
alias_database = hash:/etc/aliases
|
alias_database = hash:/etc/aliases
|
||||||
|
|
||||||
myorigin = {% if domain_name is defined %}{{ domain_name }}{% else %}{{ ansible_fqdn }}{% endif %}
|
myorigin = {% if domain_name is defined %}{{ domain_name }}{% else %}{{ ansible_fqdn }}{% endif %}
|
||||||
|
|
||||||
mydestination = {{ ansible_fqdn }}, localhost
|
mydestination = {{ ansible_fqdn }}, localhost
|
||||||
{% if postfix_use_relay_host %}
|
{% if postfix_use_relay_host %}
|
||||||
relayhost = {{ postfix_relay_host }}:{{ postfix_relay_port }}
|
relayhost = {{ postfix_relay_host }}:{{ postfix_relay_port }}
|
||||||
|
|
Loading…
Reference in New Issue