Gnus development mailing list
 help / color / mirror / Atom feed
From: "Ted Zlatanov" <tzz@lifelogs.com>
Cc: ding@gnus.org
Subject: Re: Spam does not move
Date: 27 Jul 2004 12:46:58 -0400	[thread overview]
Message-ID: <4nsmbdtn25.fsf@lifelogs.com> (raw)
In-Reply-To: <m3n01ow47c.fsf@venus.dti.ne.jp> (Kohkichi Hosoda's message of "Sun, 25 Jul 2004 23:29:09 +0900")

On Sun, 25 Jul 2004, khosoda@venus.dti.ne.jp wrote:

> I tried M-x debug-on-entry RET spam-list-articles RET.

OK, but you need to use edebug or (debug) statements.  Here's what I
would use:

(defun spam-list-articles (articles classification)
  (let ((mark-check (if (eq classification 'spam)
			'spam-group-spam-mark-p
		      'spam-group-ham-mark-p))
	alist mark-cache-yes mark-cache-no)
    (dolist (article articles)
      (let ((mark (gnus-summary-article-mark article)))
	(unless (or (memq mark mark-cache-yes)
		    (memq mark mark-cache-no))
	  (if (funcall mark-check
		       gnus-newsgroup-name
		       mark)
	      (push mark mark-cache-yes)
	    (push mark mark-cache-no)))
        (debug (memq mark mark-cache-yes) mark-check article classification mark mark-cache-yes mark-cache-no)
	(when (memq mark mark-cache-yes)
	  (push article alist))))
    alist))

(press C-x C-e after the last parenthesis to use this function; do
the same on the version in spam.el to revert to the original
function).  Run the following with M-:

list all ham articles:

(spam-list-articles 'ham)

list all spam article:

(spam-list-articles 'spam)

while you are in the group summary buffer.

You will get 1 debug statement for each article - save those
separately, I don't need more than 2 examples of what happens with
spam articles and 2 examples with ham articles (4 total) but it's OK
if you send me more.

Again, sorry that I can't find the problem, but it's happening only
for you, so you have to do the hard work :)

> What does "33" mean?  ham?

Gnus mark values are just character values, so 33 is ASCII
exclammation (!), the tick mark.  You can do something like

(format "%c" 33)

to find the visual representation of any mark.  The spam-mark is $,
value 36.

Ted



  reply	other threads:[~2004-07-27 16:46 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-05-17 12:47 Kohkichi Hosoda
2004-05-17 15:17 ` Reiner Steib
2004-05-18 14:55   ` Kohkichi Hosoda
2004-05-18 15:40     ` Kai Grossjohann
2004-05-19 15:31       ` Kohkichi Hosoda
2004-05-19 18:07         ` Ted Zlatanov
2004-05-21 13:16           ` Kohkichi Hosoda
2004-05-22 14:11             ` Kohkichi Hosoda
2004-05-24 19:10             ` Ted Zlatanov
2004-05-28 17:00               ` Kohkichi Hosoda
2004-06-14 16:07                 ` Ted Zlatanov
2004-06-18 16:00                   ` Kohkichi Hosoda
2004-06-24 16:30                     ` Ted Zlatanov
2004-06-26 14:05                       ` Kohkichi Hosoda
2004-06-26 16:19                       ` Kohkichi Hosoda
2004-06-29 18:16                         ` Ted Zlatanov
2004-07-01 13:21                           ` Kohkichi Hosoda
2004-07-01 16:11                             ` Ted Zlatanov
2004-07-02 13:11                               ` Kohkichi Hosoda
2004-07-16 17:00                                 ` Ted Zlatanov
2004-07-25 14:29                                   ` Kohkichi Hosoda
2004-07-27 16:46                                     ` Ted Zlatanov [this message]
2004-08-14 14:15                                       ` Kohkichi Hosoda
  -- strict thread matches above, loose matches on Subject: below --
2004-05-16 13:20 Kohkichi Hosoda

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4nsmbdtn25.fsf@lifelogs.com \
    --to=tzz@lifelogs.com \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).