diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-04-03 17:06:19 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-04-03 17:06:19 +0800 |
commit | 161a51e4dfb33d6cb2b445d14930a059a8568590 (patch) | |
tree | b2b4e87b8b81e4a3d2489c29365a8379f774a9f5 /plugins/bogo-junk-plugin/README | |
parent | d67896196c85262bf7d6e35cf8474d44f034d0b9 (diff) | |
download | gsoc2013-evolution-161a51e4dfb33d6cb2b445d14930a059a8568590.tar gsoc2013-evolution-161a51e4dfb33d6cb2b445d14930a059a8568590.tar.gz gsoc2013-evolution-161a51e4dfb33d6cb2b445d14930a059a8568590.tar.bz2 gsoc2013-evolution-161a51e4dfb33d6cb2b445d14930a059a8568590.tar.lz gsoc2013-evolution-161a51e4dfb33d6cb2b445d14930a059a8568590.tar.xz gsoc2013-evolution-161a51e4dfb33d6cb2b445d14930a059a8568590.tar.zst gsoc2013-evolution-161a51e4dfb33d6cb2b445d14930a059a8568590.zip |
Added bogofilter to Evolution.
svn path=/trunk/; revision=33364
Diffstat (limited to 'plugins/bogo-junk-plugin/README')
-rw-r--r-- | plugins/bogo-junk-plugin/README | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/bogo-junk-plugin/README b/plugins/bogo-junk-plugin/README new file mode 100644 index 0000000000..a14bcf6dda --- /dev/null +++ b/plugins/bogo-junk-plugin/README @@ -0,0 +1,35 @@ +Bogofilter plugin for Evolution + +This plugin implements junk filtering for the Evolution mailer, +provided by the bogofilter utility. Bogofilter (http://www.bogofilter.org) +if a fast and nimble mail filter using a so-called Bayesian technique to +classify junk and non-junk email. + +CAVEATS: + +For Evolution versions before 2.5.2, the definition file for the stock +junk filter plugin, 'org-gnome-sa-junk-plugin.eplug', must be removed +from the plugin directory to avoid conflict with any alternate junk plugin. +Simply disabling the SA plugin in the configuration won't help. +This is due to a flaw in the loading code for this hook type +(see GNOME bug #313096). + +To be able to classify emails as spam, bogofilter needs to have some +messages in its ham (non-spam) wordlist. This presents something of a +chicken-and-egg problem for Evolution, because it can feed messages +to the junk filter for learning as non-junk only after these messages have been +classified as junk and moved into a junk folder (GNOME bug #322105). +Thus, if you haven't got a pre-existing bogofilter database, you may need +to feed it some messages known to be non-junk, using its +command line utility: + +bogofilter -n < saved-ham-message + +Alternatively, you may use Spam Trainer, which is a GUI tool that supports +drag-and-drop from Evolution: + +http://spamtrainer.sourceforge.net/ + +Set it up to use bogofilter commands for training: + Ham command: bogofilter -n < %f + Spam command: bogofilter -s < %f |