2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-31 13:50:21 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dovecot < Formula
|
2010-03-09 17:36:57 +00:00
|
|
|
homepage 'http://dovecot.org/'
|
2012-08-06 01:56:28 +00:00
|
|
|
url 'http://dovecot.org/releases/2.1/dovecot-2.1.9.tar.gz'
|
|
|
|
sha1 'f576e3f4015cc88fc509f693741aaf137f46ed91'
|
2009-08-31 13:50:21 +00:00
|
|
|
|
|
|
|
def install
|
2010-05-27 04:03:39 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2011-10-06 10:14:17 +00:00
|
|
|
"--libexecdir=#{libexec}",
|
2010-05-27 04:03:39 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--localstatedir=#{var}",
|
|
|
|
"--with-ssl=openssl"
|
2009-08-31 13:50:21 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2009-09-16 18:29:43 +00:00
|
|
|
def caveats; <<-EOS
|
2009-08-31 13:50:21 +00:00
|
|
|
For Dovecot to work, you will need to do the following:
|
|
|
|
|
2010-05-27 04:03:39 +00:00
|
|
|
1) Create configuration in #{etc}
|
2009-08-31 13:50:21 +00:00
|
|
|
|
|
|
|
2) If required by the configuration above, create a dovecot user and group
|
|
|
|
|
2011-12-31 05:56:52 +00:00
|
|
|
3) possibly create a launchd item in /Library/LaunchDaemons/#{plist_path.basename}, like so:
|
2009-08-31 13:50:21 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2010-07-13 22:28:41 +00:00
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
2009-08-31 13:50:21 +00:00
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
2011-12-31 05:56:52 +00:00
|
|
|
<string>#{plist_name}</string>
|
2010-07-13 22:28:41 +00:00
|
|
|
<key>OnDemand</key>
|
|
|
|
<false/>
|
2009-08-31 13:50:21 +00:00
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2011-12-31 22:13:31 +00:00
|
|
|
<string>#{HOMEBREW_PREFIX}/sbin/dovecot</string>
|
2010-07-13 22:28:41 +00:00
|
|
|
<string>-F</string>
|
2009-08-31 13:50:21 +00:00
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
2010-07-13 22:28:41 +00:00
|
|
|
<key>ServiceDescription</key>
|
|
|
|
<string>Dovecot mail server</string>
|
2009-08-31 13:50:21 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
2009-09-01 00:48:24 +00:00
|
|
|
|
2010-07-13 22:28:41 +00:00
|
|
|
Source: http://wiki.dovecot.org/LaunchdInstall
|
2011-12-31 05:56:52 +00:00
|
|
|
4) start the server using: sudo launchctl load /Library/LaunchDaemons/#{plist_path.basename}
|
2009-08-31 13:50:21 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
2011-10-06 10:14:17 +00:00
|
|
|
|