Last active
January 4, 2016 03:59
-
-
Save dhaley/8565426 to your computer and use it in GitHub Desktop.
dovecot + clucene (homebrew recipe)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Dovecot < Formula | |
homepage 'http://dovecot.org/' | |
url 'http://dovecot.org/releases/2.2/dovecot-2.2.10.tar.gz' | |
mirror 'http://fossies.org/linux/misc/dovecot-2.2.10.tar.gz' | |
sha256 '75592483d40dc4f76cc3b41af40caa4be80478946a699d46846d5d03e4d2e09b' | |
def install | |
system "./configure", "--disable-dependency-tracking", | |
"--prefix=#{prefix}", | |
"--libexecdir=#{libexec}", | |
"--sysconfdir=#{etc}", | |
"--localstatedir=#{var}", | |
"--with-ssl=openssl", | |
"--with-sqlite", | |
"--with-lucene", | |
"--with-stemmer", | |
"--with-zlib", | |
"--with-bzlib" | |
system "make install" | |
end | |
def caveats; <<-EOS | |
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} | |
EOS | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment