summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/SiteSpecific
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-01-03 16:26:16 -0400
committerJoey Hess <joeyh@joeyh.name>2016-01-03 16:26:16 -0400
commit3f5cc046915a9f64c31a6d48aaef5254f5eb7598 (patch)
tree110bd5acac6adf0c08111efb9f9cd2dc07701b30 /src/Propellor/Property/SiteSpecific
parent299d478dfd96037c660109c4f0519fd1cc37a887 (diff)
parent93ee9e6966783368fa41fb75c7e287bee04f9c16 (diff)
Merge branch 'joeyconfig'
Diffstat (limited to 'src/Propellor/Property/SiteSpecific')
-rw-r--r--src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs1
-rw-r--r--src/Propellor/Property/SiteSpecific/JoeySites.hs9
2 files changed, 9 insertions, 1 deletions
diff --git a/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs b/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
index 2312846c..153d714f 100644
--- a/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
+++ b/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
@@ -118,6 +118,7 @@ standardAutoBuilder osver@(System _ arch) flavor =
& os osver
& Apt.stdSourcesList
& Apt.unattendedUpgrades
+ & Apt.cacheCleaned
& User.accountFor (User builduser)
& tree arch flavor
diff --git a/src/Propellor/Property/SiteSpecific/JoeySites.hs b/src/Propellor/Property/SiteSpecific/JoeySites.hs
index 732714db..f140404d 100644
--- a/src/Propellor/Property/SiteSpecific/JoeySites.hs
+++ b/src/Propellor/Property/SiteSpecific/JoeySites.hs
@@ -694,16 +694,23 @@ kiteMailServer = propertyList "kitenet.net mail server" $ props
`describe` "pine configured to use local imap server"
& Apt.serviceInstalledRunning "mailman"
+
+ & Postfix.service ssmtp
where
ctx = Context "kitenet.net"
pinescript = "/usr/local/bin/pine"
dovecotusers = "/etc/dovecot/users"
+ ssmtp = Postfix.Service
+ (Postfix.InetService Nothing "ssmtp")
+ "smtpd" Postfix.defServiceOpts
+
-- Configures postfix to relay outgoing mail to kitenet.net, with
-- verification via tls cert.
postfixClientRelay :: Context -> Property HasInfo
postfixClientRelay ctx = Postfix.mainCfFile `File.containsLines`
- [ "relayhost = kitenet.net"
+ -- Using smtps not smtp because more networks firewall smtp
+ [ "relayhost = kitenet.net:smtps"
, "smtp_tls_CAfile = /etc/ssl/certs/joeyca.pem"
, "smtp_tls_cert_file = /etc/ssl/certs/postfix.pem"
, "smtp_tls_key_file = /etc/ssl/private/postfix.pem"