diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 15:58:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 15:58:42 -0300 |
commit | 3baf7d8b10f026c307684b2ad93b3e17c0893dc6 (patch) | |
tree | 869ee64fdb6818979cac93c6fc59ea3f82aa5554 | |
parent | a2d97cac1eb0a78652f672b65ae3046301706d5d (diff) | |
download | puppet-mail-3baf7d8b10f026c307684b2ad93b3e17c0893dc6.tar.gz puppet-mail-3baf7d8b10f026c307684b2ad93b3e17c0893dc6.tar.bz2 |
Managing virtual mailboxes
-rw-r--r-- | manifests/system.pp | 8 |
1 files changed, 8 insertions, 0 deletions
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, + } } |