From: Silvio Rhatto Date: Sun, 8 Aug 2010 18:58:42 +0000 (-0300) Subject: Managing virtual mailboxes X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=3baf7d8b10f026c307684b2ad93b3e17c0893dc6;p=puppet-mail.git Managing virtual mailboxes --- diff --git a/manifests/system.pp b/manifests/system.pp index b018fc1..0aea418 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -67,4 +67,12 @@ class mail::system { # Recipient restrictions postfix::config { "smtpd_recipient_restrictions": value => 'permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_rbl_client psbl.surriel.com, check_policy_service inet:127.0.0.1:60000' } + + # Virtual mailboxes + file { '/var/mail/virtual': + ensure => directory, + owner => root, + group => root, + mode => 0755, + } }