From owner-svn-ports-head@FreeBSD.ORG Sat May 11 14:34:14 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A46F6C7F; Sat, 11 May 2013 14:34:14 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7B074AE1; Sat, 11 May 2013 14:34:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4BEYEqU023279; Sat, 11 May 2013 14:34:14 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4BEYDcJ023276; Sat, 11 May 2013 14:34:13 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201305111434.r4BEYDcJ023276@svn.freebsd.org> From: Pawel Pekala Date: Sat, 11 May 2013 14:34:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317878 - in head/mail: . claws-mail-bogofilter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 May 2013 14:34:14 -0000 Author: pawel Date: Sat May 11 14:34:13 2013 New Revision: 317878 URL: http://svnweb.freebsd.org/changeset/ports/317878 Log: 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 Added: head/mail/claws-mail-bogofilter/ head/mail/claws-mail-bogofilter/Makefile (contents, props changed) head/mail/claws-mail-bogofilter/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sat May 11 14:10:28 2013 (r317877) +++ head/mail/Makefile Sat May 11 14:34:13 2013 (r317878) @@ -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 Added: head/mail/claws-mail-bogofilter/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/claws-mail-bogofilter/Makefile Sat May 11 14:34:13 2013 (r317878) @@ -0,0 +1,14 @@ +# Created by: Pawel Pekala +# $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 Added: head/mail/claws-mail-bogofilter/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/claws-mail-bogofilter/pkg-descr Sat May 11 14:34:13 2013 (r317878) @@ -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