aboutsummaryrefslogtreecommitdiffstats
path: root/roles/proxmox_hypervisor/tasks/postfix.yml
blob: 2cb3fb21bce52333423d8fba8dde00431fb2ed73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- name: install postfix
  apt:
    name:
      - postfix
      - bsd-mailx
    state: present

- name: generate postifx configuration
  template:
    src: etc/postfix/main.cf.j2
    dest: /etc/postfix/main.cf
  notify: restart postfix

- name: enable postfix
  systemd:
    name: postfix
    enabled: yes
    state: started