How to automatically start postfix on boot?
I would like to have postfix to be started automatically with booting.
Is this possible in Mac OS X Snow Leopard? How can it be done?
Macbook Pro, Mac OS X (10.6.5)
Apple Intelligence is now available on iPhone, iPad, and Mac!
Macbook Pro, Mac OS X (10.6.5)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>smtp</string>
<key>ProgramArguments</key>
<array>
<string>/usr/libexec/postfix/master</string>
</array>
</dict>
</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>OnDemand</key>
<false/>
<key>Program</key>
<string>/usr/libexec/postfix/master</string>
<key>ProgramArguments</key>
<array>
<string>master</string>
</array>
<key>QueueDirectories</key>
<array>
<string>/var/spool/postfix/maildrop</string>
</array>
</dict>
</plist>
How to automatically start postfix on boot?