From 5ea60e199e55a9fbfeb88091c542e00d46100d82 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 24 Aug 2019 16:04:37 +0200 Subject: [PATCH] fix smtp auth files --- tasks/config_univention.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/config_univention.yml b/tasks/config_univention.yml index 8d6b614..644b36e 100644 --- a/tasks/config_univention.yml +++ b/tasks/config_univention.yml @@ -14,14 +14,14 @@ path: /etc/postfix/smtp_auth.db register: __authdb - - name: Create sasl_passwd.db + - name: Create smtp_auth.db command: /usr/sbin/postmap hash:/etc/postfix/smtp_auth when: not __authdb.stat.exists or __auth_result.changed notify: __postfix_restart - - name: Set permissions for sasl_passwd.db + - name: Set permissions for smtp_auth.db file: - path: /etc/postfix/sasl_passwd.db + path: /etc/postfix/smtp_auth.db owner: root group: root mode: 0600