diff options
author | pawel <pawel@FreeBSD.org> | 2013-05-11 22:47:33 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2013-05-11 22:47:33 +0800 |
commit | 9b005b637e0c4b50a7b0f7d2a4394122a1da9d7c (patch) | |
tree | 8153cb04174f99882e3424e19b5f94e22cd43967 | |
parent | 08fd4870ed9c13009d4ecb108f4ff48233d26795 (diff) | |
download | freebsd-ports-gnome-9b005b637e0c4b50a7b0f7d2a4394122a1da9d7c.tar.gz freebsd-ports-gnome-9b005b637e0c4b50a7b0f7d2a4394122a1da9d7c.tar.zst freebsd-ports-gnome-9b005b637e0c4b50a7b0f7d2a4394122a1da9d7c.zip |
his plugin enables the scanning of incoming mail received from a POP,
IMAP, or LOCAL account using SpamAssassin. It can optionally delete mail
identified as spam or save it to a designated folder, and also can be used
to train a local SpamAssassin (or a remote one if SpamAssassin >= 3.1 is
installed both locally and remotely). According to your SpamAssassin server
configuration, it can show worse performance than Bogofilter, (slower,
eating more CPU), but can catch spam with better accuracy.
WWW: http://claws-mail.org/plugin.php?plugin=spamassassin
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/claws-mail-spamassassin/Makefile | 14 | ||||
-rw-r--r-- | mail/claws-mail-spamassassin/pkg-descr | 9 |
3 files changed, 24 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 68b8ed8b3420..f1269347e6ad 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -66,6 +66,7 @@ SUBDIR += claws-mail-pgp SUBDIR += claws-mail-python SUBDIR += claws-mail-rssyl + SUBDIR += claws-mail-spamassassin SUBDIR += claws-mail-spamreport SUBDIR += claws-mail-tnef SUBDIR += claws-mail-vcalendar diff --git a/mail/claws-mail-spamassassin/Makefile b/mail/claws-mail-spamassassin/Makefile new file mode 100644 index 000000000000..1146e52bf34c --- /dev/null +++ b/mail/claws-mail-spamassassin/Makefile @@ -0,0 +1,14 @@ +# Created by: Pawel Pekala <pawel@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= spamassassin +PORTREVISION= 0 + +COMMENT= SpamAssassin plugin for Claws Mail + +RUN_DEPENDS= spamd:${PORTSDIR}/mail/p5-Mail-SpamAssassin + +CLAWS_PLUGINS_BUILD= spamassassin + +.include "../claws-mail/Makefile.claws" +.include <bsd.port.mk> diff --git a/mail/claws-mail-spamassassin/pkg-descr b/mail/claws-mail-spamassassin/pkg-descr new file mode 100644 index 000000000000..011166aad271 --- /dev/null +++ b/mail/claws-mail-spamassassin/pkg-descr @@ -0,0 +1,9 @@ +This plugin enables the scanning of incoming mail received from a POP, +IMAP, or LOCAL account using SpamAssassin. It can optionally delete mail +identified as spam or save it to a designated folder, and also can be used +to train a local SpamAssassin (or a remote one if SpamAssassin >= 3.1 is +installed both locally and remotely). According to your SpamAssassin server +configuration, it can show worse performance than Bogofilter, (slower, +eating more CPU), but can catch spam with better accuracy. + +WWW: http://claws-mail.org/plugin.php?plugin=spamassassin |