diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2010-01-31 00:47:54 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2010-01-31 00:47:54 +0000 |
commit | d2e029f9318c0162bc506169a2c32d517c0e2a53 (patch) | |
tree | 96e802058c382c8bc1e592401e3a10d38ca16619 /mail/isbg | |
parent | 9a7e5f6496e8475990b659eee7452058790bde68 (diff) | |
download | ports-d2e029f9318c0162bc506169a2c32d517c0e2a53.tar.gz ports-d2e029f9318c0162bc506169a2c32d517c0e2a53.zip |
IMAP Spam Begone (isbg) is a script that makes it easy to scan
an IMAP inbox for spam using SpamAssassin and get your spam
moved to another folde
Unlike the normal mode of deployments for SpamAssassin, isbg
does not need to be involved in mail delivery, and can run on
completely different machines to where your mailbox actually
is.
WWW: http://wiki.github.com/ook/isbg/
PR: ports/143325
Submitted by: Bernhard Froehlich <decke at bluelife.at>
Notes
Notes:
svn path=/head/; revision=248874
Diffstat (limited to 'mail/isbg')
-rw-r--r-- | mail/isbg/Makefile | 30 | ||||
-rw-r--r-- | mail/isbg/distinfo | 3 | ||||
-rw-r--r-- | mail/isbg/pkg-descr | 10 |
3 files changed, 43 insertions, 0 deletions
diff --git a/mail/isbg/Makefile b/mail/isbg/Makefile new file mode 100644 index 000000000000..a059020f7293 --- /dev/null +++ b/mail/isbg/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: isbg +# Date created: 2010-01-28 +# Whom: Bernhard Froehlich <decke@bluelife.at> +# +# $FreeBSD$ +# + +PORTNAME= isbg +PORTVERSION= 0.98 +CATEGORIES= mail +MASTER_SITES= http://cloud.github.com/downloads/ook/isbg/ \ + http://home.bluelife.at/ports/distfiles/ +DISTNAME= ${PORTNAME}_${PORTVERSION}_${DISTDATE} +EXTRACT_SUFX= .tgz + +MAINTAINER= decke@bluelife.at +COMMENT= Scan an IMAP inbox for spam using SpamAssassin + +RUN_DEPENDS+= spamassassin:${PORTSDIR}/mail/p5-Mail-SpamAssassin + +DISTDATE= 20091130 +NO_BUILD= yes +USE_PYTHON= 2.5+ + +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/isbg.py ${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/mail/isbg/distinfo b/mail/isbg/distinfo new file mode 100644 index 000000000000..762e0989cd8e --- /dev/null +++ b/mail/isbg/distinfo @@ -0,0 +1,3 @@ +MD5 (isbg_0.98_20091130.tgz) = 433a62b18822321989a9722e376e4483 +SHA256 (isbg_0.98_20091130.tgz) = a469a0ad6505d1edab45c2fc6273e77576c83a5945fc584d86e62df93dab28b3 +SIZE (isbg_0.98_20091130.tgz) = 7235 diff --git a/mail/isbg/pkg-descr b/mail/isbg/pkg-descr new file mode 100644 index 000000000000..c96d92eafd02 --- /dev/null +++ b/mail/isbg/pkg-descr @@ -0,0 +1,10 @@ +IMAP Spam Begone (isbg) is a script that makes it easy to scan +an IMAP inbox for spam using SpamAssassin and get your spam +moved to another folder. + +Unlike the normal mode of deployments for SpamAssassin, isbg +does not need to be involved in mail delivery, and can run on +completely different machines to where your mailbox actually +is. + +WWW: http://wiki.github.com/ook/isbg/ |