Leopardメモ(Popper)

備忘録として
Tigerではxinetdで起動させていたが、Leopardではxinetdを使わなくなったようだ。
そこでlaunchdで起動させてやる必要がある。

/system/Library/LaunchDaemons/pop3.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>Disabled</key>
<false/>
<key>Label</key>
<string>qpopper</string>
<key>OnDemand</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/usr/local/sbin/popper</string>
</array>
<key>Sockets</key>
<dict>
<key>Listeners</key>
<dict>
<key>SockServiceName</key>
<string>pop3</string>
</dict>
<key>SockType</key>
<string>stream</string>
</dict>
<key>inetdCompatibility</key>
<dict>
<key>Wait</key>
<false/>
</dict>
</dict>
</plist>