1999-01-31 15:21:15 +00:00
|
|
|
# $Id: Makefile,v 1.5 1998/09/13 23:14:20 brian Exp $
|
1997-10-19 16:40:10 +00:00
|
|
|
|
|
|
|
install:
|
1998-07-20 12:30:39 +00:00
|
|
|
/usr/sbin/makemap hash /etc/mail/spamsites < /etc/mail/block_domains.txt
|
1997-10-19 16:40:10 +00:00
|
|
|
.if exists(/etc/mail/spamsites.local)
|
1998-07-20 12:30:39 +00:00
|
|
|
/usr/sbin/makemap -o hash /etc/mail/spamsites < /etc/mail/spamsites.local
|
1997-10-19 16:40:10 +00:00
|
|
|
.endif
|
1998-07-20 12:30:39 +00:00
|
|
|
/usr/sbin/makemap hash /etc/mail/denyip < /etc/mail/block_ips.txt
|
1997-10-19 16:40:10 +00:00
|
|
|
.if exists(/etc/mail/denyip.local)
|
1998-07-20 12:30:39 +00:00
|
|
|
/usr/sbin/makemap -o hash /etc/mail/denyip < /etc/mail/denyip.local
|
1997-10-19 16:40:10 +00:00
|
|
|
.endif
|
|
|
|
|
1999-01-31 15:21:15 +00:00
|
|
|
all: install
|