spam.el: copy/move of ham articles from unclassified groups
  Home FAQ Contact Sign in
gnu.emacs.gnus only
 
Advanced search
POPULAR GROUPS

more...

gnu.emacs.gnus Profile…
 Up
spam.el: copy/move of ham articles from unclassified groups         


Author: Tim Howe
Date: Apr 21, 2007 09:43

I'm running Gnus v5.10.7 and using spam-stat.el via spam.el for spam
filtering.

My setup is as follows:

Mail is split according to senders, then if none matches the spam
splitter is used. nnml:raw.spammy is my spam split destination; all
the rest goes to nnml:raw. These 2 groups are unclassified (neither
spam nor ham).

I have a single group classified as spam: nnml:spam.explicit. This is
my spam process destination.

All other groups are classified as ham.

Currently my workflow is as follows: enter the /nnml:raw\(\..*\)?/
groups, move all the ham articles into nnml:misc to be read or manually
split later, then mark all the rest of the articles as spam and exit the
group, causing them to be processed and moved to nnml:spam.explicit.

Now (correct me if I'm wrong) I could have /nnml:raw\(\..*\)?/
classified as spam groups for the same basic effect. However I don't
like that I lose all the score highlighting when they are auto-marked as
spam, and I'm nervous about the default mark being "spam". Please tell
me if this is a legitimate concern.
Show full article (1.69Kb)
3 Comments
Re: spam.el: copy/move of ham articles from unclassified groups         


Author: Tim Howe
Date: Apr 21, 2007 11:04

Tim Howe quadium.net> writes:
> I'm thinking what I will do is implement an interactive function which
> overrides the ! key in the raw groups. It will remove all marks and
> move the article into nnml:misc.

For the record here is what I came up with:

(defun gnus-summary-unread-and-hammify-article ()
(interactive)
(gnus-summary-clear-mark-forward 1)
(gnus-summary-move-article nil "nnml:misc"))
Show full article (1.93Kb)
no comments
Re: spam.el: copy/move of ham articles from unclassified groups         


Author: Ted Zlatanov
Date: Jul 6, 2007 10:04

On Sat, 21 Apr 2007 12:43:05 -0400 Tim Howe quadium.net> wrote:
TH> Mail is split according to senders, then if none matches the spam
TH> splitter is used. nnml:raw.spammy is my spam split destination; all
TH> the rest goes to nnml:raw. These 2 groups are unclassified (neither
TH> spam nor ham).

Tim,

sorry for the late reply. I cc-ed your e-mail address to make sure
you'd get it.
TH> I have a single group classified as spam: nnml:spam.explicit. This is
TH> my spam process destination.
TH> All other groups are classified as ham.
TH> Currently my workflow is as follows: enter the /nnml:raw\(\..*\)?/
TH> groups, move all the ham articles into nnml:misc to be read or manually
TH> split later, then mark all the rest of the articles as spam and exit the
TH> group, causing them to be processed and moved to nnml:spam.explicit.

OK.
Show full article (2.54Kb)
no comments