vm-ansible/roles/smtpgateway/tasks/main.yaml

42 lines
746 B
YAML
Raw Normal View History

---
- name: "Install Postfix via apt"
apt:
update_cache: yes
state: present
name:
- postfix
- name: Install Postfix mail gateway config
template:
src: templates/main.cf
dest: /etc/postfix/main.cf
2022-02-05 21:35:28 +01:00
- name: Build /etc/mailname
2022-02-05 21:49:58 +01:00
shell: hostname --fqdn > /etc/mailname
2022-02-05 21:35:28 +01:00
- name: Restart Postfix
service:
name: postfix
state: restarted
enabled: yes
2022-02-05 20:00:55 +01:00
- name: Allow smtp port via ufw
community.general.ufw:
rule: allow
2022-04-16 19:09:47 +02:00
port: smtp
2022-05-29 15:15:02 +02:00
- name: "Install postfix exporter"
apt:
update_cache: yes
state: present
name:
- prometheus-postfix-exporter
- name: Allow postfix exporter via ufw
community.general.ufw:
rule: allow
port: 9706
proto: tcp
src: 192.168.69.0/24
2022-04-16 19:55:29 +02:00
...