diff options
author | tv <tv@pkgsrc.org> | 2004-03-29 19:01:34 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2004-03-29 19:01:34 +0000 |
commit | 272445599b6c61fad4d5f6b1ffef812553d0a63a (patch) | |
tree | ddb1021c6de6e2b5f255f0194c1353e426cce7b2 | |
parent | 7d1b9942a72c5c24f7ddd25fdd453935be8552cc (diff) | |
download | pkgsrc-272445599b6c61fad4d5f6b1ffef812553d0a63a.tar.gz |
Hashcash is a denial-of-service counter measure tool. It's main current
use is to help hashcash users avoid losing email due to content based
and blacklist based anti-spam systems.
The hashcash tool allows you to create hashcash tokens to attach to
emails you send, and to verify hashcash tokens attached to emails you
receive. Email senders attach hashcash tokens with the X-Hashcash:
header. Vendors and authors of anti-spam tools are encouraged to exempt
mail sent with hashcash from their blacklists and content based
filtering rules.
-rw-r--r-- | security/hashcash/DESCR | 10 | ||||
-rw-r--r-- | security/hashcash/Makefile | 21 | ||||
-rw-r--r-- | security/hashcash/PLIST | 3 | ||||
-rw-r--r-- | security/hashcash/distinfo | 4 |
4 files changed, 38 insertions, 0 deletions
diff --git a/security/hashcash/DESCR b/security/hashcash/DESCR new file mode 100644 index 00000000000..5842e44f71b --- /dev/null +++ b/security/hashcash/DESCR @@ -0,0 +1,10 @@ + Hashcash is a denial-of-service counter measure tool. It's main current + use is to help hashcash users avoid losing email due to content based + and blacklist based anti-spam systems. + + The hashcash tool allows you to create hashcash tokens to attach to + emails you send, and to verify hashcash tokens attached to emails you + receive. Email senders attach hashcash tokens with the X-Hashcash: + header. Vendors and authors of anti-spam tools are encouraged to exempt + mail sent with hashcash from their blacklists and content based + filtering rules. diff --git a/security/hashcash/Makefile b/security/hashcash/Makefile new file mode 100644 index 00000000000..ac1a6c8bb3a --- /dev/null +++ b/security/hashcash/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/03/29 19:01:34 tv Exp $ +# + +DISTNAME= hashcash-0.28 +CATEGORIES= security +MASTER_SITES= http://cypherspace.org/hashcash/source/ +EXTRACT_SUFX= .tgz + +MAINTAINER= tv@duh.org +HOMEPAGE= http://www.hashcash.org/ +COMMENT= Hash collision based postage stamp + +MAKE_FLAGS= COPT="${CFLAGS} -Dunix" + +USE_BUILDLINK3= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/hashcash ${PREFIX}/bin/ + ${INSTALL_DATA} ${WRKSRC}/hashcash.1 ${PREFIX}/man/man1/ + +.include "../../mk/bsd.pkg.mk" diff --git a/security/hashcash/PLIST b/security/hashcash/PLIST new file mode 100644 index 00000000000..df6925d99fd --- /dev/null +++ b/security/hashcash/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2004/03/29 19:01:34 tv Exp $ +bin/hashcash +man/man1/hashcash.1 diff --git a/security/hashcash/distinfo b/security/hashcash/distinfo new file mode 100644 index 00000000000..43d68275e08 --- /dev/null +++ b/security/hashcash/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2004/03/29 19:01:34 tv Exp $ + +SHA1 (hashcash-0.28.tgz) = 8749d88003c1c5028615646eddffd422054c2804 +Size (hashcash-0.28.tgz) = 88924 bytes |