LionのPostfixは定期的に起きだして、用が済めば寝てしまう設定だが、いつも起きていたほうが都合がいいので、
/System/Library/LaunchDaemons/org.postfix.master.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.postfix.master</string>
<key>Program</key>
<string>/usr/libexec/postfix/master</string>
<key>ProgramArguments</key>
<array>
<string>master</string>
<!-- <string>-e</string>
<string>60</string> -->
</array>
<key>QueueDirectories</key>
<array>
<string>/Library/Server/Mail/Data/spool/maildrop</string>
</array>
<key>AbandonProcessGroup</key>
<true/>
<key>OnDemand</key>
<false/>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>