diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-04-24 18:13:46 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-04-24 18:13:46 -0300 |
commit | 680df723e145c0478067426f5ecdad86c6851fec (patch) | |
tree | 282f1c5ca5a38d8ec457b9890a7a3fc62bfbe352 | |
parent | 3503542a32ab0ef3d31375c246bc4d1d389c42cd (diff) | |
download | puppet-nodo-680df723e145c0478067426f5ecdad86c6851fec.tar.gz puppet-nodo-680df723e145c0478067426f5ecdad86c6851fec.tar.bz2 |
Postfix configuration
-rw-r--r-- | manifests/mail.pp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/mail.pp b/manifests/mail.pp index cf9d589..2242807 100644 --- a/manifests/mail.pp +++ b/manifests/mail.pp @@ -9,11 +9,15 @@ class nodo::mail { include postfix::mta include database + # The needed packages package { 'postfix-mysql': ensure => installed, } package { [ 'squirrelmail', 'squirrelmail-secure-login', 'squirrelmail-locales' ]: ensure => installed, - } + } + + # Postfix configuration + postfix::config { "myhostname": value => "$fqdn" } } |