- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with postfix
- 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
This module installs, configures and manages the Postfix service.
This module handles installing, configuring and running Postfix across a range of operating systems and distributions.
- postfix package.
- postfix configuration file.
- postfix service.
- Puppet >= 3.0
- Facter >= 1.6
- Extlib module
- Stdlib module
Install postfix with the default parameters (No configuration files will be changed).
class { 'postfix': }
Install postfix with the recommended parameters.
class { 'postfix':
config_file_template => "postfix/${::operatingsystem}/etc/postfix/main.cf.erb",
config_file_hash => {
'mailname' => {
config_file_path => '/etc/mailname',
config_file_string => "${::fqdn}\n",
},
},
}
Update the postfix package.
class { 'postfix':
package_ensure => 'latest',
}
Remove the postfix package.
class { 'postfix':
package_ensure => 'absent',
}
Purge the postfix package (All configuration files will be removed).
class { 'postfix':
package_ensure => 'purged',
}
Deploy the configuration files from source directory.
class { 'postfix':
config_dir_source => "puppet:///modules/postfix/${::operatingsystem}/etc/postfix",
}
Deploy the configuration files from source directory (Unmanaged configuration files will be removed).
class { 'postfix':
config_dir_purge => true,
config_dir_source => "puppet:///modules/postfix/${::operatingsystem}/etc/postfix",
}
Deploy the configuration file from source.
class { 'postfix':
config_file_source => "puppet:///modules/postfix/${::operatingsystem}/etc/postfix/main.cf",
}
Deploy the configuration file from string.
class { 'postfix':
config_file_string => '# THIS FILE IS MANAGED BY PUPPET',
}
Deploy the configuration file from template.
class { 'postfix':
config_file_template => "postfix/${::operatingsystem}/etc/postfix/main.cf.erb",
}
Deploy the configuration file from custom template (Additional parameters can be defined).
class { 'postfix':
config_file_template => "postfix/${::operatingsystem}/etc/postfix/main.cf.erb",
config_file_options_hash => {
'key' => 'value',
},
}
Deploy additional configuration files from source, string or template.
class { 'postfix':
config_file_hash => {
'postfix.2nd.conf' => {
config_file_path => '/etc/postfix/postfix.2nd.conf',
config_file_source => "puppet:///modules/postfix/${::operatingsystem}/etc/postfix/postfix.2nd.conf",
},
'postfix.3rd.conf' => {
config_file_path => '/etc/postfix/postfix.3rd.conf',
config_file_string => '# THIS FILE IS MANAGED BY PUPPET',
},
'postfix.4th.conf' => {
config_file_path => '/etc/postfix/postfix.4th.conf',
config_file_template => "postfix/${::operatingsystem}/etc/postfix/postfix.4th.conf.erb",
},
},
}
Disable the postfix service.
class { 'postfix':
service_ensure => 'stopped',
}
- postfix: Main class, includes all other classes.
- postfix::install: Handles the packages.
- postfix::config: Handles the configuration file.
- postfix::service: Handles the service.
Determines if the package should be installed. Valid values are 'present', 'latest', 'absent' and 'purged'. Defaults to 'present'.
Determines the name of package to manage. Defaults to 'postfix'.
Determines if additional packages should be managed. Defaults to '['swaks']'.
Determines if the configuration directory should be present. Valid values are 'absent' and 'directory'. Defaults to 'directory'.
Determines if the configuration directory should be managed. Defaults to '/etc/postfix'
Determines if unmanaged configuration files should be removed. Valid values are 'true' and 'false'. Defaults to 'false'.
Determines if the configuration directory should be recursively managed. Valid values are 'true' and 'false'. Defaults to 'true'.
Determines the source of a configuration directory. Defaults to 'undef'.
Determines if the configuration file should be present. Valid values are 'absent' and 'present'. Defaults to 'present'.
Determines if the configuration file should be managed. Defaults to '/etc/postfix/main.cf'
Determines which user should own the configuration file. Defaults to 'root'.
Determines which group should own the configuration file. Defaults to 'root'.
Determines the desired permissions mode of the configuration file. Defaults to '0644'.
Determines the source of a configuration file. Defaults to 'undef'.
Determines the content of a configuration file. Defaults to 'undef'.
Determines the content of a configuration file. Defaults to 'undef'.
Determines if the service should be restarted after configuration changes. Defaults to 'Service[postfix]'.
Determines which package a configuration file depends on. Defaults to 'Package[postfix]'.
Determines which configuration files should be managed via postfix::define
.
Defaults to '{}'.
Determines which parameters should be passed to an ERB template. Defaults to '{}'.
Determines if the service should be running or not. Valid values are 'running' and 'stopped'. Defaults to 'running'.
Determines the name of service to manage. Defaults to 'postfix'.
Determines if the service should be enabled at boot. Valid values are 'true' and 'false'. Defaults to 'true'.
Determines the internet domain name of this mail system. Defaults to "$::fqdn".
Determines the list of domains that are delivered via the
Determines which email address should be used for the redirecting. Defaults to "admin@${::domain}".
Determines which host should be used as relayhost for outgoing emails. Defaults to "smtp.${::domain}".
Determines which port should be used as relayhost for outgoing emails. Defaults to '25'.
Determines which user should be used for authentication with the relayhost. Defaults to 'undef'.
Determines which password should be used for authentication with the relayhost. Defaults to 'undef'.
This module has been tested on:
- Debian 6/7/8
- Ubuntu 12.04/14.04/16.04
- Gentoo Base System release 2.2
If you find a bug, have trouble following the documentation or have a question about this module - please create an issue.
If you are able to patch the bug or add the feature yourself - please make a pull request.
The list of contributors can be found at: https://github.com/dhoppe/puppet-postfix/graphs/contributors