/[adm]/puppet/modules/postfix/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/postfix/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1553 - (show annotations) (download)
Wed Apr 20 20:51:09 2011 UTC (12 years, 11 months ago) by misc
File size: 2988 byte(s)
also add sysadmins to the list of those that have a alias

1 class postfix {
2
3 class base {
4 package { postfix:
5 ensure => installed
6 }
7 package { 'nail':
8 ensure => installed
9 }
10 service { postfix:
11 ensure => running,
12 subscribe => [ Package['postfix']],
13 path => "/etc/init.d/postfix"
14 }
15 }
16
17 file { '/etc/postfix/main.cf':
18 ensure => present,
19 owner => root,
20 group => root,
21 mode => 644,
22 require => Package["postfix"],
23 content => "",
24 notify => [Service['postfix']]
25 }
26
27
28 class simple_relay inherits base {
29 file { '/etc/postfix/main.cf':
30 content => template("postfix/simple_relay_main.cf"),
31 }
32 }
33
34 class smtp_server inherits base {
35 include postgrey
36 include amavis
37 include spamassassin
38 file { '/etc/postfix/main.cf':
39 content => template("postfix/main.cf"),
40 }
41
42 file { '/etc/postfix/transport_regexp':
43 ensure => present,
44 owner => root,
45 group => root,
46 mode => 644,
47 content => template("postfix/transport_regexp"),
48 }
49
50 }
51
52 class primary_smtp inherits smtp_server {
53 file { '/etc/postfix/master.cf':
54 ensure => present,
55 owner => root,
56 group => root,
57 mode => 644,
58 content => template("postfix/primary_master.cf"),
59 }
60
61 package { "postfix-ldap":
62 ensure => installed
63 }
64
65 $aliases_group = ['mga-founders','mga-packagers','mga-sysadmin']
66 $ldap_password = extlookup("postfix_ldap",'x')
67 file { '/etc/postfix/ldap_aliases.conf':
68 ensure => present,
69 owner => root,
70 group => root,
71 mode => 644,
72 content => template("postfix/ldap_aliases.conf"),
73 }
74
75 # TODO merge the file with the previous one, for common part (ldap, etc)
76 file { '/etc/postfix/group_aliases.conf':
77 ensure => present,
78 owner => root,
79 group => root,
80 mode => 644,
81 content => template("postfix/group_aliases.conf"),
82 }
83
84 # TODO make it conditional to the presence of sympa
85 file { '/etc/postfix/sympa_aliases':
86 ensure => present,
87 owner => root,
88 group => root,
89 mode => 644,
90 content => template("postfix/sympa_aliases"),
91 }
92
93
94
95
96 file { '/etc/postfix/virtual_aliases':
97 ensure => present,
98 owner => root,
99 group => root,
100 mode => 644,
101 content => template("postfix/virtual_aliases"),
102 }
103
104 exec { "postmap /etc/postfix/virtual_aliases":
105 refreshonly => true,
106 subscribe => File['/etc/postfix/virtual_aliases'],
107 }
108 }
109
110
111 class secondary_smtp inherits smtp_server {
112 }
113
114 }

  ViewVC Help
Powered by ViewVC 1.1.30