summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/mlmmj.pp9
1 files changed, 2 insertions, 7 deletions
diff --git a/manifests/mlmmj.pp b/manifests/mlmmj.pp
index a456cf4..2ef7d4f 100644
--- a/manifests/mlmmj.pp
+++ b/manifests/mlmmj.pp
@@ -23,20 +23,15 @@ class mail::mlmmj(
require => User['mlmmj'],
}
+ # This cronjob is already set by the debian package
cron { 'mlmmj-maintd':
command => '/usr/bin/mlmmj-maintd -F -d /var/spool/mlmmj',
user => mlmmj,
hour => "*",
minute => "*/2",
- ensure => present,
+ ensure => absent,
require => User['mlmmj'],
}
mail::mlmmj::domain { "${subdomain}.${domain}": }
-
- # TODO: remove in the future
- postfix::virtual_regexp_snippet { "mlmmj_virtual_regexp":
- ensure => absent,
- content => template('mail/mlmmj/virtual_regexp.erb'),
- }
}