mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
13 lines
450 B
Makefile
13 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
|