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/'
|
2014-02-16 03:07:03 +00:00
|
|
|
url 'http://dovecot.org/releases/2.2/dovecot-2.2.12.tar.gz'
|
|
|
|
mirror 'http://fossies.org/linux/misc/dovecot-2.2.12.tar.gz'
|
|
|
|
sha256 'f3de1cae5665ff202713c1489bc96b4d029760808bf3311d76c173d7f3e38c56'
|
2009-08-31 13:50:21 +00:00
|
|
|
|
2014-01-23 22:55:55 +00:00
|
|
|
depends_on 'clucene' => :optional
|
2014-04-22 21:58:15 +00:00
|
|
|
depends_on 'openssl'
|
2014-01-23 22:55:55 +00:00
|
|
|
|
2009-08-31 13:50:21 +00:00
|
|
|
def install
|
2014-01-23 22:55:55 +00:00
|
|
|
args = %W[--prefix=#{prefix}
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--libexecdir=#{libexec}
|
|
|
|
--sysconfdir=#{etc}
|
|
|
|
--localstatedir=#{var}
|
|
|
|
--with-ssl=openssl
|
|
|
|
--with-sqlite
|
|
|
|
--with-zlib
|
|
|
|
--with-bzlib]
|
|
|
|
|
|
|
|
args << "--with-lucene" if build.with? "clucene"
|
|
|
|
|
|
|
|
system "./configure", *args
|
2014-01-23 22:56:54 +00:00
|
|
|
system "make", "install"
|
2009-08-31 13:50:21 +00:00
|
|
|
end
|
|
|
|
|
2014-01-23 22:56:54 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
For Dovecot to work, you will need to do the following:
|
|
|
|
|
|
|
|
1) Create configuration in #{etc}
|
|
|
|
|
|
|
|
2) If required by the configuration above, create a dovecot user and group
|
|
|
|
|
|
|
|
3) possibly create a launchd item in /Library/LaunchDaemons/#{plist_path.basename}, like so:
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>OnDemand</key>
|
|
|
|
<false/>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{HOMEBREW_PREFIX}/sbin/dovecot</string>
|
|
|
|
<string>-F</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>ServiceDescription</key>
|
|
|
|
<string>Dovecot mail server</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
|
|
|
|
Source: http://wiki.dovecot.org/LaunchdInstall
|
|
|
|
4) start the server using: sudo launchctl load /Library/LaunchDaemons/#{plist_path.basename}
|
2009-08-31 13:50:21 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|