- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with eximsimple
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
A module to configuring exim as a simple MTA to deliver all mail via a smarthost. It should be useful for any satellite system that needs to deliver mail via a central relay.
This module will install Exim from EPEL and remove Postfix if it is installed (as installed by default on RHEL based distros).
It will configure Exim to route all mail via the smarthost
you define and qualify any unqualified mail names with the defined domain
.
Any mail destined for root
will be sent to address defined in root
parameter.
- Exim package
- Postfix package (removes)
- Exim config (/etc/exim.conf)
- Aliases (/etc/aliases)
- Exim Service
The default parameters are unlikely to be suitable for your environment, make sure you overwrite them to suitable values:
class { '::eximsimple':
smarthost => 'smtp.mydomain.com',
root => '[email protected]',
domain => 'mydomain.com',
}
- eximsimple: Main class, includes all other classes.
- eximsimple::private: Handles default parameters.
The following parameters are available in the eximsimple module:
####domain
The domain to add to any unqualified mail addresses.
####root
The address to send mails for root to.
####smarthost
The host to send all mail via. Can be any valid format that Exim accepts. e.g. smtp.example.com/MX
.
####local_interfaces
The interface to listen on. Defaults to localhost
.
####host_in_subject
This tells exim to rewrite the subject line so that the sending host is identified at the begining of the subject header.
It rewrites in the form of [$hostname] $Original subject. $hostname is using the factor hostname variable available to puppet.
This module has only been tested on the following Operating Systems:
- RHEL 6
- CentOS 6
- Debian 7 (Wheezy)
Feel free to submit pull requests.