: add smtp global relay
All checks were successful
ansible-lint / lint-everything (push) Successful in 1m31s

This commit is contained in:
VC
2025-03-29 08:27:18 +01:00
parent e4577d7d29
commit a987839c23
11 changed files with 123 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
---
- name: Install postfix
ansible.builtin.package:
name: postfix
state: present
- name: Put configuration
ansible.builtin.template:
src: main.cf.j2
dest: /etc/postfix/main.cf
owner: root
group: root
mode: "0o640"
notify: Restart postfix