/puppet-ssmtp

Puppet ssmtp module

Primary LanguagePuppetGNU General Public License v3.0GPL-3.0

#ssmtp

####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 ssmtp
  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

The ssmtp module provides the installation procedure for SSMTP including the setup of the alternate system if not overwritten by class parameter.

##Module Description

The SSMTP module prelace the standard mail server configuration with a light wight sending only server. The behavior is the same as sendmail but without the possibility to recieve mails from external systems.

##Setup

###What ssmtp affects

  • ssmtp package.
  • ssmtp configuration file.
  • ssmtp alternative service configuration.

###Beginning with ssmtp

include '::ssmtp' is enough to get you up and running if the parameters point to proper values. If you wish to pass in parameters like which servers to use then you can use:

class { '::ssmtp':
  mailhub => 'mail.example.local',
}

##Usage

All interaction with the ssmtp module can do be done through the main ssmtp class. This means you can simply toggle the options in the ssmtp class to get at the full functionality.

###I just want SSMTP, what's the minimum I need?

include '::ssmtp'

###I just want to route all mails to central mail gateway, nothing else.

class { '::ssmtp':
  mailhub => 'mail.example.local',
  rootemail => 'john.doe@example.local',
}

##Reference

###Classes

  • ssmtp: Main class, includes all the rest.
  • ssmtp::install: Handles the packages.
  • ssmtp::config: Handles the configuration file.
  • ssmtp::service: Handles the alternative service link.

###Parameters

The following parameters are available in the ssmtp module

####defaultmta

Replace the default MTA with ssmtp if set to ssmtp.

####rootemail

Specify which Email address should recieve all mails from root.

####mailhub

Define the mail server which should deliver all mails.

####revaliases

Array to define the reverse aliases.

##Limitations

This module has been built on and tested against Puppet 3.4 and higher.

The module has been tested on:

  • RedHat Enterprise Linux 5/6
  • Scientific Linux 5/6

Testing on other platforms has been light and cannot be guaranteed.

##Development

If you like to add or improve this module, feel free to fork the module and send me a merge request with the modification.