summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: f0f4b299f8fc4b8e9cc18cada0edaa1f15496af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# modules/skeleton/manifests/init.pp - manage dovecot stuff
# Copyright (C) 2009 admin@immerda.ch
#

# we take rpms from fedora
class dovecot {
  include dovecot::base

  if $dovecot_sql_sqlite or $dovecot_sql_pgsql or $dovecot_sql_mysql {
    include dovecot::sql
  }

  if $use_shorewall {
    include shorewall::rules::pop3
    include shorewall::rules::imap
  }

  if $use_munin {
    include dovecot::munin
  }
}