plesk 9 spamassassin server wide blacklist via cron?
- by Kqk
we're running ubuntu 8.04 LTS and plesk 9.2
our simple task is to set up a periodic black list for spamassassin, e.g. using this script ..
#!/bin/sh
#! Script by AJR to update local spamassassin rules
cd /tmp
wget -c http://www.stearns.org/sa-blacklist/sa-blacklist.current
mv sa-blacklist.current local.cf -f
mv local.cf /etc/mail/spamassassin -f…