aboutsummaryrefslogtreecommitdiff
path: root/manifests/mail.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-04-24 18:13:46 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-04-24 18:13:46 -0300
commit680df723e145c0478067426f5ecdad86c6851fec (patch)
tree282f1c5ca5a38d8ec457b9890a7a3fc62bfbe352 /manifests/mail.pp
parent3503542a32ab0ef3d31375c246bc4d1d389c42cd (diff)
downloadpuppet-nodo-680df723e145c0478067426f5ecdad86c6851fec.tar.gz
puppet-nodo-680df723e145c0478067426f5ecdad86c6851fec.tar.bz2
Postfix configuration
Diffstat (limited to 'manifests/mail.pp')
-rw-r--r--manifests/mail.pp6
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" }
}