Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Puppet Camptocamp Postfix
Commits
18661db4
Commit
18661db4
authored
Dec 22, 2009
by
Francois Deppierraz
Browse files
Breaks backward compat: A few $postfix_ng_ variables were changed into $postfix_ variables
parent
8a23f6d5
Changes
5
Hide whitespace changes
Inline
Side-by-side
manifests/classes/postfix-mailman.pp
View file @
18661db4
...
...
@@ -15,7 +15,7 @@
# }
#
class
postfix::mailman
{
$postfix_
ng_
smtp_listen
=
"0.0.0.0"
$postfix_smtp_listen
=
"0.0.0.0"
include
postfix
postfix::config
{
...
...
manifests/classes/postfix-mta.pp
View file @
18661db4
...
...
@@ -2,7 +2,7 @@
# == Class: postfix::mta
#
# This class configures a minimal MTA, listening on
# $postfix_
ng_
smtp_listen (default to localhost) and delivering mail to
# $postfix_smtp_listen (default to localhost) and delivering mail to
# $postfix_mydestination (default to $fqdn).
#
# A valid relay host is required ($postfix_relayhost) for outbound email.
...
...
@@ -19,7 +19,7 @@
#
# node "toto.example.com" {
# $postfix_relayhost = "mail.example.com"
# $postfix_
ng_
smtp_listen = "0.0.0.0"
# $postfix_smtp_listen = "0.0.0.0"
# $postfix_mydestination = "\$myorigin, myapp.example.com"
#
# include postfix::mta
...
...
manifests/classes/postfix.pp
View file @
18661db4
...
...
@@ -34,8 +34,8 @@ class postfix {
}
# Default value for various options
case
$postfix_
ng_
smtp_listen
{
""
:
{
$postfix_
ng_
smtp_listen
=
"127.0.0.1"
}
case
$postfix_smtp_listen
{
""
:
{
$postfix_smtp_listen
=
"127.0.0.1"
}
}
case
$root_mail_recipient
{
""
:
{
$root_mail_recipient
=
"nobody"
}
...
...
templates/master.cf.debian-etch.erb
View file @
18661db4
...
...
@@ -7,7 +7,7 @@
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
<%=
postfix_
ng_
smtp_listen
%>
:smtp inet n - - - - smtpd
<%=
postfix_smtp_listen
%>
:smtp inet n - - - - smtpd
#submission inet n - - - - smtpd
# -o smtpd_enforce_tls=yes
# -o smtpd_sasl_auth_enable=yes
...
...
templates/master.cf.redhat5.erb
View file @
18661db4
...
...
@@ -7,7 +7,7 @@
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
<%=
postfix_
ng_
smtp_listen
%>
:smtp inet n - n - - smtpd
<%=
postfix_smtp_listen
%>
:smtp inet n - n - - smtpd
#smtp inet n - n - - smtpd
#submission inet n - n - - smtpd
# -o smtpd_enforce_tls=yes
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment