From db0b5ab3db2ff94a9d4b7b21ee18ee51fe0068db Mon Sep 17 00:00:00 2001 From: William Hirigoyen Date: Tue, 2 May 2023 14:20:39 +0200 Subject: [PATCH] postfix: add missing localhost.$mydomain to mydestination --- CHANGELOG.md | 3 ++- evolinux-base/tasks/postfix.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14ecfebb..27288389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,8 @@ The **patch** part changes is incremented if multiple releases happen the same m * evolinux-users: remove Stretch references in tasks that also apply to next Debian versions. ### Fixed -* packweb-apache,nagios-nrpe: add missing task and config fo PHP 8.2 container +* packweb-apache,nagios-nrpe: add missing task and config for PHP 8.2 container +* potsfix: add missing `localhost.$mydomain` to mydestination ### Removed diff --git a/evolinux-base/tasks/postfix.yml b/evolinux-base/tasks/postfix.yml index 1c5d986c..d9dba3e2 100644 --- a/evolinux-base/tasks/postfix.yml +++ b/evolinux-base/tasks/postfix.yml @@ -25,7 +25,7 @@ ansible.builtin.lineinfile: dest: /etc/postfix/main.cf state: present - line: "mydestination = {{ [evolinux_fqdn, evolinux_internal_fqdn] | unique | join(' ') }} localhost.localdomain localhost" + line: "mydestination = {{ [evolinux_fqdn, evolinux_internal_fqdn] | unique | join(' ') }} localhost.localdomain localhost localhost.$mydomain" regexp: '^mydestination' notify: reload postfix tags: