forked from Homebrew/legacy-homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdovecot.rb
56 lines (48 loc) · 1.76 KB
/
dovecot.rb
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
49
50
51
52
53
54
55
require 'formula'
class Dovecot < Formula
homepage 'http://dovecot.org/'
url 'http://dovecot.org/releases/2.1/dovecot-2.1.10.tar.gz'
sha1 '8b4e67e4cf99b71d9d8c01c323b7133a5716125d'
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