A launchd plist for spamd
—
A launchd plist for spamd on OS X
Create a file here:
/Library/LaunchDaemons/org.spamassassin.spamd.plist
With content:
<?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.spamassassin.spamd</string>
<key>OnDemand</key>
<false/>
<key>Program</key>
<string>/usr/bin/spamd</string>
<key>ProgramArguments</key>
<array>
<string>-D</string>
</array>
<key>RunOnLoad</key>
<true/>
</dict>
</plist>