Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arillso/ansible.postfix
Ansible role for installing and configure Postfix, a mail server.
https://github.com/arillso/ansible.postfix
ansible ansible-role postfix
Last synced: 6 days ago
JSON representation
Ansible role for installing and configure Postfix, a mail server.
- Host: GitHub
- URL: https://github.com/arillso/ansible.postfix
- Owner: arillso
- License: mit
- Created: 2016-11-05T20:21:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T12:49:21.000Z (about 1 year ago)
- Last Synced: 2024-05-08T00:23:26.288Z (6 months ago)
- Topics: ansible, ansible-role, postfix
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 3
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Role: Postfix
[![Build Status](https://travis-ci.org/arillso/ansible.postfix.svg?branch=master)](https://travis-ci.org/arillso/ansible.postfix)## Description
Ansible role for installing and configure Postfix, a mail server.
## Installation
```
$ ansible-galaxy install arillso.postfix
```## Requirements
None
## Role Variables
| Variable | Default | Comments (type) |
| :--- | :--- | :--- |
| ```postfix_inet_interfaces``` | ```all``` | |
| ```postfix_inet_protocols ``` | ```all``` | |
| ```postfix_hostname``` | ```"{{ ansible_fqdn }}"``` | |
| ```postfix_mailname``` | ```$myhostname``` | |
| ```postfix_mynetworks``` | ```- 127.0.0.0/8 ``` | |
| | ```- '[::ffff:127.0.0.0]/104'``` | |
| | ```- '[::1]/128'``` | |
| ```postfix_mydestination ``` | ```- "{{ postfix_hostname }}"``` | |
| | ```- $myhostname``` | |
| | ```- localhost.$mydomain``` | |
| | ```- localhost``` | |
| ```postfix_relayhost``` | | |
| ```postfix_relayhost_port``` | | |
| ```postfix_relaytls``` | ```true``` | |
| ```postfix_sasl_auth_enable``` | ```true``` | |
| ```postfix_sasl_user``` | | |
| ```postfix_sasl_password``` | | |
| ```postfix_sasl_security_options``` | ```noanonymous``` | |
| ```postfix_root_mailbox``` | | |## Dependencies
None
## Example Playbook
```yml
- hosts: all
roles:
- arillso.postfix
```## Changelog
### 1.3
* new roles tests
### 1.2
* rename role name
### 1.1
* add tags
* add become### 1.0
* Initial release
## Author
* [Simon Bärlocher](https://sbaerlocher.ch)
## LicenseThis project is under the MIT License. See the [LICENSE](https://sbaerlo.ch/licence) file for the full license text.
## Copyright
(c) 2016, Simon Bärlocher