aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/network/mail.pp
blob: 02287c3e7fe64cb8ff4e5ab16ab983ae238af234 (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
class nodo::utils::network::mail {
  # Mail
  package { [
    'mutt',
    'mutt-patched',
    'muttprofile',
    'notmuch-mutt',
    'offlineimap',
    'newsbeuter',
    'bogofilter',
    'fetchmail',
    'procmail',
    'msmtp',
  ]:
    ensure => installed,
  }

  # Fix: ensure that fetchmail is not a service
  service { 'fetchmail':
    ensure  => stopped,
    enable  => false,
    require => Package['fetchmail'],
  }
}