summaryrefslogtreecommitdiff
path: root/manifests/amavisd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/amavisd.pp')
-rw-r--r--manifests/amavisd.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/amavisd.pp b/manifests/amavisd.pp
index d59670a..85e2501 100644
--- a/manifests/amavisd.pp
+++ b/manifests/amavisd.pp
@@ -18,5 +18,15 @@ class mail::amavisd {
notify => Service['amavisd'],
}
+ group { 'amavis':
+ ensure => present,
+ }
+
+ user { 'amavis':
+ ensure => present,
+ gid => 'amavis',
+ require => Group['amavis'],
+ }
+
postfix::config { "content_filter": value => 'amavis:[127.0.0.1]:10024' }
}