diff options
-rw-r--r-- | manifests/mlmmj.pp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/manifests/mlmmj.pp b/manifests/mlmmj.pp index 47250bb..a456cf4 100644 --- a/manifests/mlmmj.pp +++ b/manifests/mlmmj.pp @@ -23,14 +23,14 @@ class mail::mlmmj( require => User['mlmmj'], } - #cron { 'mlmmj-maintd': - # command => '/usr/bin/mlmmj-maintd -F -d /var/spool/mlmmj', - # user => root, - # hour => "*", - # minute => "*/2", - # ensure => present, - # require => User['mlmmj'], - #} + cron { 'mlmmj-maintd': + command => '/usr/bin/mlmmj-maintd -F -d /var/spool/mlmmj', + user => mlmmj, + hour => "*", + minute => "*/2", + ensure => present, + require => User['mlmmj'], + } mail::mlmmj::domain { "${subdomain}.${domain}": } |