Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions manifests/dovecot.pp
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,17 @@
group => 'root',
}

# Make sure that dovecot have access to mails
user { 'dovecot':
groups => 'mail',
require => Package[ $packages_dovecot ],
}



# Make sure the /var/mail folder is well configured
file { '/var/mail/':
ensure => directory,
mode => '1777',
}
}

# vi:smartindent:tabstop=2:shiftwidth=2:expandtab: