aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postfix/manifests/server.pp
blob: 85ab261c15312bf9e82793d4c0d17370257673dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class postfix::server inherits postfix {
    include postgrey
    include amavis
    include spamassassin

    File['/etc/postfix/main.cf'] {
        content => template('postfix/main.cf'),
    }

    file { '/etc/postfix/transport_regexp':
        content => template('postfix/transport_regexp'),
    }
}