aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postfix/manifests/simple_relay.pp
blob: 8911f781a92c4ea5ba6fc72f6041bc64848ebaca (plain)
1
2
3
4
5
6
7
8
9
class postfix::simple_relay inherits postfix {
    File['/etc/postfix/main.cf'] {
        content => template('postfix/simple_relay_main.cf'),
    }
    file {
        '/etc/postfix/sympa_aliases':
            content => template('postfix/sympa_aliases');
    }
}