summaryrefslogtreecommitdiff
path: root/manifests/firma.pp
blob: a858e7fec22ddeb70a09d211d956f8e47a7c3dc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
class mail::firma {
  # Firma subsystems
  include mail::packages::firma

  postfix::config { "firma_destination_recipient_limit": value => '1', nonstandard => true }

  postfix::transport_regexp_snippet { 'firma_transport_regexp':
    content => template('mail/postfix/firma/transport_regexp.erb'),
  }

  postfix::virtual_regexp_snippet { 'firma_virtual_regexp':
    content => template('mail/postfix/firma/virtual_regexp.erb'),
  }

  postfix::transport { "${firma_subdomain}.$domain":
    ensure      => absent,
    destination => "firma",
  }

  group { "firma":
    ensure    => present,
    allowdupe => false,
  }

  user { "firma":
    ensure    => present,
    allowdupe => false,
    gid       => 'firma',
    require   => Group['firma'],
    home      => '/var/lib/firma',
  }

  vcsrepo { "/var/lib/firma":
    ensure   => present,
    provider => git,
    source   => 'git://git.sarava.org/firma.git',
    revision => 'e279e7e4951087c3e5d29d19602057000f455a41',
    owner    => 'firma',
    group    => 'firma',
    require  => [ User['firma'], Group['firma'] ],
  }

  file { '/usr/local/bin/firma':
    ensure  => '/var/lib/firma/firma',
    owner   => root,
    group   => root,
    require => Vcsrepo['/var/lib/firma'],
  }

  exec { 'cp /var/lib/firma/firma.conf.dist /var/lib/firma/firma.conf && chmod 600 /var/lib/firma/firma.conf':
    creates => '/var/lib/firma/firma.conf',
    user    => 'firma',
    group   => 'firma',
    require => Vcsrepo['/var/lib/firma'],
  }
}