]> gitweb.fluxo.info Git - puppet-mail.git/commitdiff
Adding undecipherable_subject_tag amavis config
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 28 Nov 2010 17:10:15 +0000 (15:10 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 28 Nov 2010 17:10:15 +0000 (15:10 -0200)
files/amavisd/50-user [new file with mode: 0644]
manifests/amavisd.pp

diff --git a/files/amavisd/50-user b/files/amavisd/50-user
new file mode 100644 (file)
index 0000000..ddaab0f
--- /dev/null
@@ -0,0 +1,15 @@
+use strict;
+
+#
+# Place your configuration directives here.  They will override those in
+# earlier files.
+#
+# See /usr/share/doc/amavisd-new/ for documentation and examples of
+# the directives you can use in this file
+#
+
+# See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=498832
+$undecipherable_subject_tag = undef;
+
+#------------ Do not modify anything below this line -------------
+1;  # ensure a defined return
index 36c329cff42d081ceca73f287461d60c97f185b3..720c15c07ed73d362ec6c3ec5b4b3457d59f3fec 100644 (file)
@@ -32,6 +32,15 @@ class mail::amavisd {
     notify => Service['amavis'],
   }
 
+  file { "/etc/amavis/conf.d/50-user":
+    ensure => present,
+    owner  => root,
+    group  => root,
+    mode   => 0644,
+    source => "puppet:///modules/mail/amavisd/50-user",
+    notify => Service['amavis'],
+  }
+
   group { 'amavis':
     ensure => present,
   }