summaryrefslogtreecommitdiff
path: root/libexec/spamlogd/Makefile
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2004-02-26 07:28:56 +0000
committerBob Beck <beck@cvs.openbsd.org>2004-02-26 07:28:56 +0000
commitc879576d51d8099395bf9286c8e939a3c6484839 (patch)
tree873df009cb315b2bdd3132a80971aee555209401 /libexec/spamlogd/Makefile
parent68ca8b3e82a4a5094091027feddcb51262302e73 (diff)
Add -g option for greylisting support for spamd. The greylisting techinque
originates from a paper by Evan Harris which can be found at http://projects.puremagic.com/greylisting/. This implementation makes spamd allow for non-blacklisted addresses to be treated as "greylisted". where they are tracked in a db file, and whitelisted by addition to a pf table when the same envelope from and to are retried from the same source IP address. Testing by many, ok deraadt@
Diffstat (limited to 'libexec/spamlogd/Makefile')
-rw-r--r--libexec/spamlogd/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/libexec/spamlogd/Makefile b/libexec/spamlogd/Makefile
new file mode 100644
index 00000000000..ce40ac8143f
--- /dev/null
+++ b/libexec/spamlogd/Makefile
@@ -0,0 +1,9 @@
+# $OpenBSD: Makefile,v 1.1 2004/02/26 07:28:55 beck Exp $
+
+PROG= spamlogd
+SRCS= spamlogd.c
+MAN= spamlogd.8
+
+CFLAGS+= -Wall -Wstrict-prototypes -ansi -I ${.CURDIR}/../spamd
+
+.include <bsd.prog.mk>