diff options
author | pawel <pawel@FreeBSD.org> | 2013-05-11 22:34:13 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2013-05-11 22:34:13 +0800 |
commit | 2f039558526618961ab22ae54de13407d6d0e0bf (patch) | |
tree | a5f981e830efb4d5e24b00ef0f0e6f45d42a8ff7 /mail | |
parent | 8841fe6bbb3f6f4e03b29d2ea1fee038e8ff9d83 (diff) | |
download | freebsd-ports-gnome-2f039558526618961ab22ae54de13407d6d0e0bf.tar.gz freebsd-ports-gnome-2f039558526618961ab22ae54de13407d6d0e0bf.tar.zst freebsd-ports-gnome-2f039558526618961ab22ae54de13407d6d0e0bf.zip |
This plugin enables the scanning of incoming mail received from a POP, IMAP,
or LOCAL account using Bogofilter. It can optionally delete mail identified
as spam or save it to a designated folder. Bogofilter is a pure Bayesian
filter, therefore it has better speed performance than SpamAssassin but might
catch less spam.
WWW: http://claws-mail.org/plugin.php?plugin=bogofilter
Diffstat (limited to 'mail')
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/claws-mail-bogofilter/Makefile | 14 | ||||
-rw-r--r-- | mail/claws-mail-bogofilter/pkg-descr | 7 |
3 files changed, 22 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index e7733cb14416..9f263809fab4 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -50,6 +50,7 @@ SUBDIR += claws-mail-archiver SUBDIR += claws-mail-att_remover SUBDIR += claws-mail-attach_warner + SUBDIR += claws-mail-bogofilter SUBDIR += claws-mail-bsfilter SUBDIR += claws-mail-cachesaver SUBDIR += claws-mail-clamd diff --git a/mail/claws-mail-bogofilter/Makefile b/mail/claws-mail-bogofilter/Makefile new file mode 100644 index 000000000000..15cb97475714 --- /dev/null +++ b/mail/claws-mail-bogofilter/Makefile @@ -0,0 +1,14 @@ +# Created by: Pawel Pekala <pawel@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= bogofilter +PORTREVISION= 0 + +COMMENT= Spam filtering plugin for Claws Mail + +RUN_DEPENDS= bogofilter:${PORTSDIR}/mail/bogofilter + +CLAWS_PLUGINS_BUILD= bogofilter + +.include "../claws-mail/Makefile.claws" +.include <bsd.port.mk> diff --git a/mail/claws-mail-bogofilter/pkg-descr b/mail/claws-mail-bogofilter/pkg-descr new file mode 100644 index 000000000000..09dbe2510f20 --- /dev/null +++ b/mail/claws-mail-bogofilter/pkg-descr @@ -0,0 +1,7 @@ +This plugin enables the scanning of incoming mail received from a POP, IMAP, +or LOCAL account using Bogofilter. It can optionally delete mail identified +as spam or save it to a designated folder. Bogofilter is a pure Bayesian +filter, therefore it has better speed performance than SpamAssassin but might +catch less spam. + +WWW: http://claws-mail.org/plugin.php?plugin=bogofilter |