auto-restart on changes to header_checks and body_checks
diff --git a/manifests/server.pp b/manifests/server.pp
index addef96..2d705c3 100644
--- a/manifests/server.pp
+++ b/manifests/server.pp
@@ -253,6 +253,7 @@
   postfix::file { 'header_checks':
     content    => template('postfix/header_checks.erb'),
     group      => $root_group,
+    notify     => Service['postfix'],
     postfixdir => $config_directory,
   }
 
@@ -260,6 +261,7 @@
   postfix::file { 'body_checks':
     content    => template('postfix/body_checks.erb'),
     group      => $root_group,
+    notify     => Service['postfix'],
     postfixdir => $config_directory,
   }
 
@@ -268,4 +270,3 @@
   }
 
 }
-