From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/52357 Path: main.gmane.org!not-for-mail From: Niklas Morberg Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] spam.el docstring fix (was: Ham messages not being moved anymore) Date: Tue, 06 May 2003 15:18:18 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: References: <4nel3lqhsg.fsf@lockgroove.bwh.harvard.edu> <4ny91sasyn.fsf@lockgroove.bwh.harvard.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1052227050 14562 80.91.224.249 (6 May 2003 13:17:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 6 May 2003 13:17:30 +0000 (UTC) Original-X-From: ding-owner+M901@lists.math.uh.edu Tue May 06 15:17:27 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19D2Jz-0003mY-00 for ; Tue, 06 May 2003 15:17:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19D2LF-0006GH-00; Tue, 06 May 2003 08:18:45 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19D2LA-0006GC-00 for ding@lists.math.uh.edu; Tue, 06 May 2003 08:18:40 -0500 Original-Received: (qmail 77757 invoked by alias); 6 May 2003 13:18:40 -0000 Original-Received: (qmail 77742 invoked from network); 6 May 2003 13:18:34 -0000 Original-Received: from miranda.se.axis.com (193.13.178.2) by sclp3.sclp.com with SMTP; 6 May 2003 13:18:34 -0000 Original-Received: from PCNIKLAS (dh10-13-8-222.se.axis.com [10.13.8.222]) by miranda.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) with ESMTP id h46DIIim003409 for ; Tue, 6 May 2003 15:18:18 +0200 Original-To: ding In-Reply-To: <4ny91sasyn.fsf@lockgroove.bwh.harvard.edu> (Ted Zlatanov's message of "Wed, 30 Apr 2003 11:46:40 -0400") Mail-Followup-To: ding User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3.50 (windows-nt) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:52357 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:52357 --=-=-= Ted Zlatanov writes: > On Wed, 30 Apr 2003, niklas.morberg@axis.com wrote: >> The first thing that got me was that messages are no longer >> marked as read just by viewing them. This is good and just >> something that I needed to learn. > > I'm not sure what you mean, messages should get the read-mark when > they are viewed. This is exactly what should happen, so they are > considered ham and moved out of the spam group. What I was trying to say was: pressing space in the Summary buffer (what I usually do to ''read'' messages) will not mark messages as read but will display the message for you. Pressing `d' will set the read-mark for the message. > What you call "explicitly marking messages read" is considered a > delete operation internally in Gnus, thus the del-mark. Ok, that explains a lot. BTW, I think I found an error in the documentation for spam-use-regex-headers, suggested patch included. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment Content-Description: Fixed docstring references cd c:/cygwin/usr/share/site-lisp/ diff -u -b "c:/cygwin/usr/share/site-lisp/spam.el~" "c:/cygwin/usr/share/site-lisp/spam.el" --- c:/cygwin/usr/share/site-lisp/spam.el~ 2003-05-06 11:04:33.000000000 +0200 +++ c:/cygwin/usr/share/site-lisp/spam.el 2003-05-06 15:15:43.000000000 +0200 @@ -144,7 +144,7 @@ (defcustom spam-use-regex-headers nil "Whether a header regular expression match should be used by spam-split. -Also see the variable `spam-spam-regex-headers' and `spam-ham-regex-headers'." +Also see the variables `spam-regex-headers-spam' and `spam-regex-headers-ham'." :type 'boolean :group 'spam) Diff finished at Tue May 06 15:15:56 --=-=-= Niklas --=-=-=--