ansible-base/roles/postfix
Nemo 202ba03dea OpenBSD adaptations 2020-08-23 19:05:11 +02:00
..
defaults Add postfix and mail aliases configuration 2020-07-12 15:38:50 +02:00
handlers Add postfix and mail aliases configuration 2020-07-12 15:38:50 +02:00
meta Add postfix and mail aliases configuration 2020-07-12 15:38:50 +02:00
tasks Update postfix role 2020-08-02 18:17:48 +02:00
vars OpenBSD adaptations 2020-08-23 19:05:11 +02:00
.gitignore Add postfix and mail aliases configuration 2020-07-12 15:38:50 +02:00
.travis.yml Add postfix and mail aliases configuration 2020-07-12 15:38:50 +02:00
LICENSE Add postfix and mail aliases configuration 2020-07-12 15:38:50 +02:00
README.md Update postfix role 2020-08-02 18:17:48 +02:00

README.md

Ansible Role: Postfix

Installs postfix on RedHat/CentOS, Gentoo or Debian/Ubuntu.

Requirements

If you're using this as an SMTP relay server, you will need to do that on your own, and open TCP port 25 in your server firewall.

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

postfix_config_file: /etc/postfix/main.cf
aliases_config_file: /etc/aliases

The path to the Postfix main.cf and aliases configuration file.

postfix_service_state: started
postfix_service_enabled: yes

The state in which the Postfix service should be after this role runs, and whether to enable the service on startup.

postfix_inet_interfaces: localhost
postfix_inet_protocols: all

Options for values inet_interfaces and inet_protocols in the main.cf file.

alias_email: "{{ system_admin_email }}"

The email address of admin user (to receive system notification).

Dependencies

None.

Example Playbook

- hosts: all
  roles:
    - postfix

License

MIT / BSD

Author Information

This role was created in 2014 by Jeff Geerling, author of Ansible for DevOps.