Forge Home

eximsimple

A simple module to configure exim to route mail via a smarthost.

13,774 downloads

12,532 latest version

3.4 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.3 (latest)
  • 0.1.2
  • 0.1.1
  • 0.1.0
released May 3rd 2015

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'danfoster-eximsimple', '0.1.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add danfoster-eximsimple
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install danfoster-eximsimple --version 0.1.3

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

danfoster/eximsimple — version 0.1.3 May 3rd 2015

eximsimple

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with eximsimple
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

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.

Module Description

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.

Setup

What eximsimple affects

  • Exim package
  • Postfix package (removes)
  • Exim config (/etc/exim.conf)
  • Aliases (/etc/aliases)
  • Exim Service

Usage

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      => 'myteam@mydomain.com',
  domain    => 'mydomain.com',
} 

Reference

Classes

Public Classes

  • eximsimple: Main class, includes all other classes.

Private Classes

  • eximsimple::private: Handles default parameters.

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 127.0.0.1.

Limitations

This module has only been tested on the following Operating Systems:

  • RHEL 6
  • CentOS 6
  • Debian 7 (Wheezy)

Development

Feel free to submit pull requests.