Ansible Role mailto_root¶
This role enables relaying all mail that is sent to the root user (or other service accounts on the system) to an actual mail account. For example, any output of crontab is sent tho the configured address if this role is applied to the system.
Available since LFOps 2.0.0.
Dependent Roles¶
Any LFOps playbook that installs this role runs these for you. Optional ones can be disabled via the playbook’s skip variables.
postfix must be installed and configured (role: linuxfabrik.lfops.postfix).
mailx must be installed (role: linuxfabrik.lfops.mailx).
Mandatory Role Variables¶
mailto_root__from
The sender address from which the relayed mail should be sent.
Type: String.
mailto_root__to
List of recipient addresses to which the mails should be relayed.
Type: List of strings.
Example:
# mandatory
mailto_root__from: 'noreply@example.com'
mailto_root__to:
- 'root@example.com'
- 'root@other.example'