From: Silvio Rhatto Date: Sat, 24 Apr 2010 21:13:46 +0000 (-0300) Subject: Postfix configuration X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=680df723e145c0478067426f5ecdad86c6851fec;p=puppet-nodo.git Postfix configuration --- 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" } }