sals password instead of passwd

This commit is contained in:
Ludovic Cartier 2024-12-10 10:09:45 +01:00
parent 53beeec066
commit d545354e4d
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
notify: restart postfix
when: postfix_sender_relay is defined
- name: postfix | sasl password
- name: postfix | sasl passwd
template:
src: sasl_passwd.j2
dest: /etc/postfix/sasl_passwd
@ -43,5 +43,5 @@
group: root
mode: 0644
notify: restart postfix
when: postfix_sasl_password is defined
when: postfix_sasl_passwd is defined

View File

@ -1,5 +1,5 @@
{% if postfix_sasl_passwd is defined %}
{% for passwd in postfix_sasl_passwd %}
{{ passwd }}
{{ passwd }}
{% endfor %}
{% endif %}