├── .ansible-lint ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .yamllint ├── Dockerfile ├── LICENSE.txt ├── README.md ├── Vagrantfile ├── defaults └── main.yml ├── files └── empty ├── handlers └── main.yml ├── meta └── main.yml ├── molecule └── default │ ├── collections.yml │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ └── verify.yml ├── requirements.yml ├── tasks └── main.yml ├── templates └── etc │ ├── aliases.j2 │ ├── mailname.j2 │ └── postfix │ ├── header_checks.j2 │ ├── main.cf.j2 │ └── sasl_passwd.j2 ├── tests ├── inventory ├── test.yml └── vagrant.yml └── vars └── main.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/.yamllint -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/Vagrantfile -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/collections.yml: -------------------------------------------------------------------------------- 1 | --- 2 | collections: [] 3 | -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/molecule/default/prepare.yml -------------------------------------------------------------------------------- /molecule/default/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/molecule/default/verify.yml -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- 1 | # requirements file 2 | --- 3 | collections: [] 4 | -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /templates/etc/aliases.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/templates/etc/aliases.j2 -------------------------------------------------------------------------------- /templates/etc/mailname.j2: -------------------------------------------------------------------------------- 1 | {{ postfix_mailname }} 2 | -------------------------------------------------------------------------------- /templates/etc/postfix/header_checks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/templates/etc/postfix/header_checks.j2 -------------------------------------------------------------------------------- /templates/etc/postfix/main.cf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/templates/etc/postfix/main.cf.j2 -------------------------------------------------------------------------------- /templates/etc/postfix/sasl_passwd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/templates/etc/postfix/sasl_passwd.j2 -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/tests/test.yml -------------------------------------------------------------------------------- /tests/vagrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/tests/vagrant.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oefenweb/ansible-postfix/HEAD/vars/main.yml --------------------------------------------------------------------------------