aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dovecot.rb
blob: 9cf03ff6a0f6d389e6eb49430202bd48b2ba3507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
require 'formula'

class Dovecot <Formula
  url 'http://www.dovecot.org/releases/1.2/dovecot-1.2.11.tar.gz'
  homepage 'http://dovecot.org/'
  md5 'bdac013fd57aa616ea4bdd9ac34557c6'

  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-debug",
                          "--disable-dependency-tracking",
                          "--sysconfdir=#{prefix}/etc",
                          "--localstatedir=#{prefix}/var",
                          "--with-ssl=openssl",
                          "--with-ioloop=kqueue"
    system "make install"

    # TODO: automate some of the caveats?
  end

  def caveats; <<-EOS
For Dovecot to work, you will need to do the following:

1) create configuration in #{prefix}/etc

2) If required by the configuration above, create a dovecot user and group

3) possibly create a launchd item in /Library/LaunchDaemons/org.dovecot.plist, 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>org.dovecot</string>
        <key>ProgramArguments</key>
        <array>
                <string>#{prefix}/sbin/dovecot</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
</dict>
</plist>

4) start the server using: sudo launchctl load /Library/LaunchDaemons/org.dovecot.plist 
    EOS
  end
end