Forge Home

postfix

installs and configures postfix MTA

12,736 downloads

6,723 latest version

4.6 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

  • 1.4.0 (latest)
  • 1.3.0
  • 1.2.0
  • 1.1.1
  • 1.1.0
  • 1.0.0
  • 0.4.0
  • 0.3.0
  • 0.2.1
  • 0.2.0
released Nov 26th 2016
This version is compatible with:
  • , , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'cristifalcas-postfix', '1.4.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add cristifalcas-postfix
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install cristifalcas-postfix --version 1.4.0

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

cristifalcas/postfix — version 1.4.0 Nov 26th 2016

postfix

Build Status

This is the postfix module. Currently it is mostly used to set up the local machine as a relay that forwards all emails to a local smtp server.

Usage:

Forward all wmails to your local friendlt company server:

  class { 'postfix':
    ensure                => 'latest',
    smtp_endpoint_address => "smtp.${::domain}",
    smtp_endpoint_port    => '25',
    smtp_endpoint_user    => undef,
    smtp_endpoint_pass    => undef,
    # make emails appear as sent from this domain
    from_domain           => $::domain,
    # make emails appear as sent from this user
    from_user             => 'donotreply',
    # forward all local emails to this user also
    forward_all_email_to  => undef,
    # remove other mail servers
    remove_other_mta      => true,
    set_alternatives      => true,
  }

Amazon:

  class { 'postfix':
    ensure                => 'latest',
    smtp_endpoint_address => 'email-smtp.us-east-1.amazonaws.com',
    # amazon needs tls (this uses puppet certificates)
    use_tls               => true,
    smtp_endpoint_port    => '2587',
  }

Use an user and a password to authenticate to the proper email server:

  class { 'postfix':
    ensure                => 'latest',
    smtp_endpoint_port    => '25',
    smtp_endpoint_user    => 'login_user',
    smtp_endpoint_pass    => 'pass_user',
  }