From: Silvio Rhatto Date: Sun, 8 Aug 2010 18:31:23 +0000 (-0300) Subject: We'll force SSL squirrel login through the proxy X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a2d97cac1eb0a78652f672b65ae3046301706d5d;p=puppet-mail.git We'll force SSL squirrel login through the proxy --- diff --git a/manifests/packages.pp b/manifests/packages.pp index e9f351c..fa7865f 100644 --- a/manifests/packages.pp +++ b/manifests/packages.pp @@ -19,7 +19,12 @@ class mail::packages { ensure => installed, } - package { [ 'squirrelmail', 'squirrelmail-secure-login', 'squirrelmail-locales' ]: + package { [ 'squirrelmail', 'squirrelmail-locales' ]: ensure => installed, } + + # We'll force SSL through the proxy + package { 'squirrelmail-secure-login' : + ensure: absent, + } }