summaryrefslogtreecommitdiff
path: root/manifests/virtual.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/virtual.pp')
-rw-r--r--manifests/virtual.pp4
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/virtual.pp b/manifests/virtual.pp
index df2f364..c548ba1 100644
--- a/manifests/virtual.pp
+++ b/manifests/virtual.pp
@@ -31,12 +31,16 @@ class mail::virtual(
gid => 5000,
}
+ # The vmail user maybe needs to be in the dovecot group to be able to use the stats-writer
+ # See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=903161
user { "vmail":
ensure => present,
uid => 5000,
gid => "vmail",
password => "*",
home => '/var/mail/virtual',
+ #groups => [ 'dovecot', ],
+ #require => Group['vmail', 'dovecot'],
require => Group['vmail'],
}
}