Skip to content
GitLab
Menu
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
de52e342
Commit
de52e342
authored
Mar 07, 2012
by
Andreas Jaggi
Committed by
Marc Fournier
Apr 04, 2012
Browse files
Make mynetworks configurable
parent
596e6732
Changes
1
Hide whitespace changes
Inline
Side-by-side
manifests/mta.pp
View file @
de52e342
...
@@ -42,11 +42,15 @@ class postfix::mta {
...
@@ -42,11 +42,15 @@ class postfix::mta {
default
:
{}
default
:
{}
}
}
case
$::postfix_mynetworks
{
""
:
{
$postfix_mynetworks
=
"127.0.0.0/8"
}
}
include
postfix
include
postfix
postfix::config
{
postfix::config
{
'mydestination'
:
value
=>
$::postfix_mydestination
;
'mydestination'
:
value
=>
$::postfix_mydestination
;
'mynetworks'
:
value
=>
'127.0.0.0/8'
;
'mynetworks'
:
value
=>
$::postfix_mynetworks
;
'relayhost'
:
value
=>
$::postfix_relayhost
;
'relayhost'
:
value
=>
$::postfix_relayhost
;
'virtual_alias_maps'
:
value
=>
'hash:/etc/postfix/virtual'
;
'virtual_alias_maps'
:
value
=>
'hash:/etc/postfix/virtual'
;
'transport_maps'
:
value
=>
'hash:/etc/postfix/transport'
;
'transport_maps'
:
value
=>
'hash:/etc/postfix/transport'
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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