26d61b5ba8
They nolonger provide a list of spam domains and spam ip address ranges.
14 lines
450 B
Makefile
14 lines
450 B
Makefile
# $Id: Makefile,v 1.5 1998/09/13 23:14:20 brian Exp $
|
|
|
|
install:
|
|
/usr/sbin/makemap hash /etc/mail/spamsites < /etc/mail/block_domains.txt
|
|
.if exists(/etc/mail/spamsites.local)
|
|
/usr/sbin/makemap -o hash /etc/mail/spamsites < /etc/mail/spamsites.local
|
|
.endif
|
|
/usr/sbin/makemap hash /etc/mail/denyip < /etc/mail/block_ips.txt
|
|
.if exists(/etc/mail/denyip.local)
|
|
/usr/sbin/makemap -o hash /etc/mail/denyip < /etc/mail/denyip.local
|
|
.endif
|
|
|
|
all: install
|