pkgsrc-wip/bsfilter/MESSAGE
URA Hiroshi 6f41ce0f7b bsfilter is a spam filter using Bayesian(statistical) algorithm.
- a filter which distinguishes spam and non-spam mail
- support mails written in English and Japanese language
- written in Ruby
- support 3 methods for access
-- traditional unix-style filter. study and judge local files or pipe
-- IMAP. study and judge mails in an IMAP server
-- POP proxy. run between POP server and MUA
- distributed under GPL

Author:	nabeken
WWW:	http://bsfilter.org/index-e.html
2005-03-16 07:17:22 +00:00

18 lines
611 B
Text

===========================================================================
$NetBSD: MESSAGE,v 1.1.1.1 2005/03/16 07:17:22 ura Exp $
Before actually using it, it is necessary to prepare a word database.
1.The word contained in clean mail is counted.
% bsfilter --add-clean ~/Maildir/cur/*
or
% cd ~/Maildir/cur/ ; ls | xargs bsfilter -c
2.The word in spam is counted.
% bsfilter --add-spam ~/Maildir/.spam/cur/*
or
% cd ~/Maildir/.spam/cur/ ; ls | xargs bsfilter -s
3.A database is updated for every word.
% bsfilter -u
===========================================================================