Puppet Class: isp3node::postfix::satellite

Defined in:
manifests/postfix/satellite.pp

Summary

Set up this host as postfix satellite

Overview

Examples:

include isp3node::postfix::satellite

Parameters:

  • relay (String)

    Hostname of Mail Relay server that will accept forwards from this host



7
8
9
10
11
12
13
14
15
16
17
# File 'manifests/postfix/satellite.pp', line 7

class isp3node::postfix::satellite(
  String $relay
) {
  class{'isp3node::postfix::setup':
    options => {
      satellite  => true,
      mynetworks => '127.0.0.0/8, [::1]/128',
      relayhost  => $relay,
    }
  }
}