Skip to content

Commit

Permalink
init.pp: use the postfix default for mydestination
Browse files Browse the repository at this point in the history
  • Loading branch information
kenyon committed Apr 26, 2021
1 parent 2d406a7 commit ec969dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -141,7 +141,7 @@ Default: False.

##### `mydestination`
A string to define the mydestination parameter in main.cf (postconf(5)).
Default: The systems FQDN.
Default: $myhostname, localhost.$mydomain, localhost
Example: 'example.com, foo.example.com'.

##### `mynetworks`
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Expand Up @@ -120,7 +120,7 @@
String $master_bounce_command = 'bounce',
String $master_defer_command = 'bounce',
Boolean $mta = false,
String $mydestination = '$myorigin', # postfix_mydestination
String $mydestination = '$myhostname, localhost.$mydomain, localhost', # postfix_mydestination
String $mynetworks = '127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128', # postfix_mynetworks
String $myorigin = $::fqdn,
Boolean $manage_aliases = true, # /etc/aliases
Expand Down

0 comments on commit ec969dc

Please sign in to comment.