Mac OS X 10.5 で dovecotをMac起動時に自動的に動作させる手順です。
Mac OS Xは、起動時に/System/Library/LaunchDaemonsディレクトリにあるplistをチェックしてdaemonを立ち上げます。
dovecotを使用するには、/System/Library/LaunchDaemons に org.dovecot.dovecot.plist という名前のファイルを作成します。
<?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>OnDemand</key> <false/> <key>ProgramArguments</key> <array> <string>/usr/local/sbin/dovecot</string> <string>-F</string> </array> <key>RunAtLoad</key> <true/> <key>KeepAlive</key> <true/> </dict> </plist>
dovecotのインストールディレクトリが/usr/local/sbin/で無い場合は12行目を修正してください。16行目の true を false にすれば起動時にはロードされなくなります。