Version information
released Nov 26th 2016
This version is compatible with:
- , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'cristifalcas-postfix', '1.4.0'
Learn more about managing modules with a PuppetfileDocumentation
cristifalcas/postfix — version 1.4.0 Nov 26th 2016
postfix
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',
}
Dependencies
- puppetlabs/stdlib (4.x)
- puppet/alternatives (1.x)
Copyright (C) 2014 R. Tyler Croy <tyler@monkeypox.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.