#!/bin/sh

# this script has been disabled because hilotek do not respond when
# asked to remove non-spamming domains from their list (e.g. victims of
# spam relay who have fixed their mailer so it can't be hijacked any
# more).

source /usr/lib/spamdb/constants

spamdoms=$INCDIR/`basename $0`.domains
#spammers=$INCDIR/`basename $0`.spammers
#spamnets=$INCDIR/`basename $0`.spamnets

[ -e $spamdoms ] && rm -f $spamdoms

exit 0

# fetch Hiloteks Blacklist
wget -T 60 http://www.hilotek.com/Mail/SpamDomains.html -O - | \
    sed -e '/</d' -e '/>/d' -e 's/ $//g' -e '/ /d' -e '/^$/d' >$spamdoms


