diff options
Diffstat (limited to 'manifests/utils/network')
| -rw-r--r-- | manifests/utils/network/mail.pp | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/manifests/utils/network/mail.pp b/manifests/utils/network/mail.pp new file mode 100644 index 0000000..02287c3 --- /dev/null +++ b/manifests/utils/network/mail.pp @@ -0,0 +1,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'], +  } +} | 
