Gnus development mailing list
 help / color / mirror / Atom feed
From: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
Subject: Re: miscellaneous Gnus questions
Date: 19 Jun 1996 08:21:26 +0200	[thread overview]
Message-ID: <x6u3w89uvt.fsf@eyesore.no> (raw)
In-Reply-To: jbw@cs.bu.edu's message of Tue, 18 Jun 1996 19:30:54 -0400

jbw@cs.bu.edu (Joe Wells) writes:

> 1. What keys/command do I use to re-scan all groups from a particular
>    server?  (For example, I want to rescan all of my nnml groups without
>    rescanning any nntp or nndir groups.)  I know there are commands to (1)
>    re-scan all groups on a particular level and (2) re-scan a particular
>    group (does this ever affect other groups?), but that is not what I
>    want.

There is no command to re-scan a particular server.
`(gnus-request-scan SERVER)' will do that for you.  Perhaps there
should be a command as well?

> 2. What is the difference between gnus-subscribe-alphabetically and
>    gnus-subscribe-hierarchically?  I have read the documentation and
>    looked at the source code yet clarity eludes me.

You and me both.  This is definitely a function that has survived
unscathed from GNUS 4.1:

(defun gnus-subscribe-hierarchically (newgroup)
  "Subscribe new NEWSGROUP and insert it in hierarchical newsgroup order."
  ;; Basic ideas by mike-w@cs.aukuni.ac.nz (Mike Williams)
  (save-excursion
    (set-buffer (find-file-noselect gnus-current-startup-file))
    (let ((groupkey newgroup)
	  before)
      (while (and (not before) groupkey)
	(goto-char (point-min))
	(let ((groupkey-re
	       (concat "^\\(" (regexp-quote groupkey) ".*\\)[!:]")))
	  (while (and (re-search-forward groupkey-re nil t)
		      (progn
			(setq before (match-string 1))
			(string< before newgroup)))))
	;; Remove tail of newsgroup name (eg. a.b.c -> a.b)
	(setq groupkey
	      (if (string-match "^\\(.*\\)\\.[^.]+$" groupkey)
		  (substring groupkey (match-beginning 1) (match-end 1)))))
      (gnus-subscribe-newsgroup newgroup before))))

Uhm.  What does it do?

> 3. How do I arrange for articles to be marked as expirable from a score
>    file without affecting the treatment of articles by ordinary reading?

You can't do that.

> 4. How do I arrange for score-file changes to be specified by a score
>    file?  What I want to do is completely wipe out all trace of the
>    existence of a particular person.

Score on "followup".

> 5. For mail groups, the "%R" format spec for gnus-group-line-format counts
>    all messages that have ever existed in the group, including those which
>    have been destroyed by the "B DEL" command.  The information it uses
>    seems to come from the active file.  Is there some way to get an
>    accurate count of the *existing* read messages from the "%R" format
>    spec?

Nope.  This is on the Red Gnus todo list, though.

> 6. In the summary buffer, what is difference between "M P b" and "M P a"?
>    They seem to do the same thing and the documentation strings (from "C-h
>    k") are not enlightening.

`M P a' marks all articles in "series" order while `M P b' marks all
articles in the order they appear in the buffer.

-- 
  "Yes.  The journey through the human heart 
     would have to wait until some other time."


  reply	other threads:[~1996-06-19  6:21 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1996-06-18 23:30 Joe Wells
1996-06-19  6:21 ` Lars Magne Ingebrigtsen [this message]
1996-06-19 12:46   ` Jack Vinson
1996-06-19 13:12     ` Lars Magne Ingebrigtsen
1996-06-22 20:08   ` Joe Wells
1996-06-24 13:46     ` Colin Rafferty
1996-08-28  6:22     ` Lars Magne Ingebrigtsen
1996-08-28 22:26       ` Roger Williams
1996-08-29  0:54         ` Roger Williams
1996-06-25 21:48   ` Hallvard B Furuseth
1996-06-19  8:26 ` Per Abrahamsen

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=x6u3w89uvt.fsf@eyesore.no \
    --to=larsi@ifi.uio.no \
    /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).