Index: gnus/ChangeLog diff -u gnus/ChangeLog:6.62 gnus/ChangeLog:6.63 --- gnus/ChangeLog:6.62 Thu May 1 15:34:33 2003 +++ gnus/ChangeLog Thu May 1 17:17:53 2003 @@ -1,3 +1,7 @@ +2003-05-01 Jesper Harder + + * etc/gnus-tut.txt (http): Update. + 2003-05-01 Simon Josefsson * GNUS-NEWS: Add prefix limit feature. Index: gnus/contrib/ChangeLog diff -u gnus/contrib/ChangeLog:1.79 gnus/contrib/ChangeLog:1.80 --- gnus/contrib/ChangeLog:1.79 Thu Apr 17 00:49:09 2003 +++ gnus/contrib/ChangeLog Thu May 1 18:03:41 2003 @@ -1,3 +1,8 @@ +2003-05-01 Vasily Korytov + + * gpg.el (gpg-passphrase-forget): Check that gpg-passphrase is + set. + 2003-04-17 Steve Youngs * hashcash.el (hashcash-point-at-bol): Move the fbound test Index: gnus/contrib/gpg.el diff -u gnus/contrib/gpg.el:1.18 gnus/contrib/gpg.el:1.19 --- gnus/contrib/gpg.el:1.18 Fri Jan 25 19:00:44 2002 +++ gnus/contrib/gpg.el Thu May 1 18:03:41 2003 @@ -7,7 +7,7 @@ ;; Keywords: crypto ;; Created: 2000-04-15 -;; $Id: gpg.el,v 1.18 2002/01/25 18:00:44 huber Exp $ +;; $Id: gpg.el,v 1.19 2003/05/01 16:03:41 larsi Exp $ ;; This file is NOT (yet?) part of GNU Emacs. @@ -800,10 +800,11 @@ (defun gpg-passphrase-forget () "Forget stored passphrase." (interactive) - (cancel-timer gpg-passphrase-timer) - (setq gpg-passphrase-timer nil) - (gpg-passphrase-clear-string gpg-passphrase) - (setq gpg-passphrase nil)) + (when gpg-passphrase + (cancel-timer gpg-passphrase-timer) + (setq gpg-passphrase-timer nil) + (gpg-passphrase-clear-string gpg-passphrase) + (setq gpg-passphrase nil))) (defun gpg-passphrase-store (passphrase) "Store PASSPHRASE in cache. Index: gnus/etc/gnus-tut.txt diff -u gnus/etc/gnus-tut.txt:6.5 gnus/etc/gnus-tut.txt:6.6 --- gnus/etc/gnus-tut.txt:6.5 Mon Apr 21 20:56:50 2003 +++ gnus/etc/gnus-tut.txt Thu May 1 17:17:52 2003 @@ -195,7 +195,7 @@ There is absolutely no chance, whatsoever, of getting Gnus to work with Emacs 18. It won't even work on Emacsen older than Emacs -20.3/XEmacs 20.4. Upgrade your Emacs or die. +20.7/XEmacs 21.1. Upgrade your Emacs or die. From lars Thu Feb 23 23:20:38 1995 @@ -569,7 +569,7 @@ 1.5. Which version of Emacs do I need? Gnus 5.10.0 requires an Emacs version that is greater than or equal - to Emacs 20.3 or XEmacs 20.1. + to Emacs 20.7 or XEmacs 21.1. 1.6. How do I run Gnus on both Emacs and XEmacs? Index: gnus/lisp/ChangeLog diff -u gnus/lisp/ChangeLog:6.2331 gnus/lisp/ChangeLog:6.2336 --- gnus/lisp/ChangeLog:6.2331 Thu May 1 16:15:56 2003 +++ gnus/lisp/ChangeLog Thu May 1 18:08:38 2003 @@ -1,5 +1,24 @@ 2003-05-01 Lars Magne Ingebrigtsen + * gnus.el: Oort Gnus v0.24 is released. + +2003-05-01 Lars Magne Ingebrigtsen + + * dgnushack.el (when): Check whether defadvice is fbound. + +2003-05-01 Teodor Zlatanov + + * gnus-registry.el (gnus-registry-unregistered-group-regex): new variable + (gnus-registry-register-message-ids): use it + +2003-05-01 Lars Magne Ingebrigtsen + + * gnus.el (gnus-version-number): Bump. + + * gnus.el: Update copyright for several files. + +2003-05-01 Lars Magne Ingebrigtsen + * gnus.el: Oort Gnus v0.23 is released. 2003-05-01 Lars Magne Ingebrigtsen @@ -103,7 +122,7 @@ Take care of some differences between XEmacs 21.1 and newer versions of XEmacs. -2003-04-30 Teodor Zlatanov +2003-04-30 Teodor Zlatanov * gnus-registry.el (gnus-registry-split-fancy-with-parent): added diagnostic message Index: gnus/lisp/dgnushack.el diff -u gnus/lisp/dgnushack.el:6.38 gnus/lisp/dgnushack.el:6.40 --- gnus/lisp/dgnushack.el:6.38 Thu May 1 14:52:17 2003 +++ gnus/lisp/dgnushack.el Thu May 1 17:47:55 2003 @@ -1,5 +1,5 @@ ;;; dgnushack.el --- a hack to set the load path for byte-compiling -;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen @@ -132,7 +132,7 @@ (autoload 'custom-declare-face "cus-face" nil t) (autoload 'cl-compile-time-init "cl-macs" nil t) (autoload 'defadvice "advice" nil nil 'macro)) - (when (eq emacs-minor-version 4) + (unless (fboundp 'defadvice) (autoload 'defadvice "advice" nil nil 'macro)) (autoload 'Info-directory "info" nil t) (autoload 'Info-menu "info" nil t) Index: gnus/lisp/gnus-demon.el diff -u gnus/lisp/gnus-demon.el:6.2 gnus/lisp/gnus-demon.el:6.3 --- gnus/lisp/gnus-demon.el:6.2 Wed Jul 25 02:16:57 2001 +++ gnus/lisp/gnus-demon.el Thu May 1 16:23:14 2003 @@ -1,6 +1,6 @@ ;;; gnus-demon.el --- daemonic Gnus behaviour -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen Index: gnus/lisp/gnus-diary.el diff -u gnus/lisp/gnus-diary.el:1.7 gnus/lisp/gnus-diary.el:1.8 --- gnus/lisp/gnus-diary.el:1.7 Wed Apr 16 15:24:28 2003 +++ gnus/lisp/gnus-diary.el Thu May 1 16:23:14 2003 @@ -1,6 +1,6 @@ ;;; gnus-diary.el --- Wrapper around the NNDiary Gnus backend -;; Copyright (c) 2001, 2002 Free Software Foundation, Inc. +;; Copyright (c) 2001, 2002, 2003 Free Software Foundation, Inc. ;; Copyright (C) 1999, 2000, 2001 Didier Verna. ;; Author: Didier Verna Index: gnus/lisp/gnus-dired.el diff -u gnus/lisp/gnus-dired.el:6.5 gnus/lisp/gnus-dired.el:6.6 --- gnus/lisp/gnus-dired.el:6.5 Thu May 1 10:02:35 2003 +++ gnus/lisp/gnus-dired.el Thu May 1 16:23:14 2003 @@ -1,6 +1,6 @@ ;;; gnus-dired.el --- utility functions where gnus and dired meet -;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002 +;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003 ;; Free Software Foundation, Inc. ;; Authors: Benjamin Rutt , Index: gnus/lisp/gnus-gl.el diff -u gnus/lisp/gnus-gl.el:6.7 gnus/lisp/gnus-gl.el:6.8 --- gnus/lisp/gnus-gl.el:6.7 Sun Apr 27 04:17:07 2003 +++ gnus/lisp/gnus-gl.el Thu May 1 16:23:14 2003 @@ -1,6 +1,6 @@ ;;; gnus-gl.el --- an interface to GroupLens for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 ;; Free Software Foundation, Inc. ;; Author: Brad Miller Index: gnus/lisp/gnus-kill.el diff -u gnus/lisp/gnus-kill.el:6.6 gnus/lisp/gnus-kill.el:6.7 --- gnus/lisp/gnus-kill.el:6.6 Sun Apr 27 06:30:30 2003 +++ gnus/lisp/gnus-kill.el Thu May 1 16:23:14 2003 @@ -1,5 +1,5 @@ ;;; gnus-kill.el --- kill commands for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003 ;; Free Software Foundation, Inc. ;; Author: Masanobu UMEDA Index: gnus/lisp/gnus-registry.el diff -u gnus/lisp/gnus-registry.el:6.12 gnus/lisp/gnus-registry.el:6.13 --- gnus/lisp/gnus-registry.el:6.12 Wed Apr 30 18:26:12 2003 +++ gnus/lisp/gnus-registry.el Thu May 1 17:46:54 2003 @@ -49,6 +49,11 @@ :group 'gnus-registry :type '(repeat string)) +(defcustom gnus-registry-unregistered-group-regex "^nntp" + "Group name regex that gnus-registry-register-message-ids won't process." + :group 'gnus-registry + :type 'regexp) + ;; Function(s) missing in Emacs 20 (when (memq nil (mapcar 'fboundp '(puthash))) (require 'cl) @@ -151,13 +156,15 @@ (defun gnus-registry-register-message-ids () "Register the Message-ID of every article in the group" - (dolist (article gnus-newsgroup-articles) - (let ((id (gnus-registry-fetch-message-id-fast article))) - (unless (gnus-registry-fetch-group id) - (gnus-message 9 "Registry: Registering article %d with group %s" - article gnus-newsgroup-name) - (gnus-registry-add-group (gnus-registry-fetch-message-id-fast article) - gnus-newsgroup-name))))) + (unless (and gnus-registry-unregistered-group-regex + (string-match gnus-registry-unregistered-group-regex gnus-newsgroup-name)) + (dolist (article gnus-newsgroup-articles) + (let ((id (gnus-registry-fetch-message-id-fast article))) + (unless (gnus-registry-fetch-group id) + (gnus-message 9 "Registry: Registering article %d with group %s" + article gnus-newsgroup-name) + (gnus-registry-add-group (gnus-registry-fetch-message-id-fast article) + gnus-newsgroup-name)))))) (defun gnus-registry-fetch-message-id-fast (article) "Fetch the Message-ID quickly, using the internal gnus-data-list function" Index: gnus/lisp/gnus-undo.el diff -u gnus/lisp/gnus-undo.el:6.2 gnus/lisp/gnus-undo.el:6.3 --- gnus/lisp/gnus-undo.el:6.2 Sun Apr 27 04:17:06 2003 +++ gnus/lisp/gnus-undo.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; gnus-undo.el --- minor mode for undoing in Gnus -;; Copyright (C) 1996, 1997, 1998, 1999, 2000 +;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen Index: gnus/lisp/gnus-uu.el diff -u gnus/lisp/gnus-uu.el:6.24 gnus/lisp/gnus-uu.el:6.25 --- gnus/lisp/gnus-uu.el:6.24 Fri Mar 21 08:30:45 2003 +++ gnus/lisp/gnus-uu.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; gnus-uu.el --- extract (uu)encoded files in Gnus ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 2000, -;; 2001, 2002 Free Software Foundation, Inc. +;; 2001, 2002, 2003 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Created: 2 Oct 1993 Index: gnus/lisp/gnus.el diff -u gnus/lisp/gnus.el:6.176 gnus/lisp/gnus.el:6.177 --- gnus/lisp/gnus.el:6.176 Thu May 1 14:35:22 2003 +++ gnus/lisp/gnus.el Thu May 1 16:17:41 2003 @@ -286,7 +286,7 @@ :link '(custom-manual "(gnus)Exiting Gnus") :group 'gnus) -(defconst gnus-version-number "0.23" +(defconst gnus-version-number "0.24" "Version number for this version of Gnus.") (defconst gnus-version (format "Oort Gnus v%s" gnus-version-number) Index: gnus/lisp/ietf-drums.el diff -u gnus/lisp/ietf-drums.el:6.8 gnus/lisp/ietf-drums.el:6.9 --- gnus/lisp/ietf-drums.el:6.8 Fri Feb 14 21:28:13 2003 +++ gnus/lisp/ietf-drums.el Thu May 1 16:23:15 2003 @@ -1,5 +1,5 @@ ;;; ietf-drums.el --- Functions for parsing RFC822bis headers -;; Copyright (C) 1998, 1999, 2000, 2001, 2002 +;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen Index: gnus/lisp/mm-extern.el diff -u gnus/lisp/mm-extern.el:6.13 gnus/lisp/mm-extern.el:6.14 --- gnus/lisp/mm-extern.el:6.13 Mon Apr 7 10:16:07 2003 +++ gnus/lisp/mm-extern.el Thu May 1 16:23:15 2003 @@ -1,5 +1,5 @@ ;;; mm-extern.el --- showing message/external-body -;; Copyright (C) 2000, 2001 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: message external-body Index: gnus/lisp/mm-view.el diff -u gnus/lisp/mm-view.el:6.56 gnus/lisp/mm-view.el:6.57 --- gnus/lisp/mm-view.el:6.56 Wed Apr 30 19:20:10 2003 +++ gnus/lisp/mm-view.el Thu May 1 16:23:15 2003 @@ -1,5 +1,5 @@ ;;; mm-view.el --- functions for viewing MIME objects -;; Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. Index: gnus/lisp/nndb.el diff -u gnus/lisp/nndb.el:6.5 gnus/lisp/nndb.el:6.6 --- gnus/lisp/nndb.el:6.5 Sun Apr 20 16:25:48 2003 +++ gnus/lisp/nndb.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; nndb.el --- nndb access for Gnus -;; Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 2000, 2003 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Kai Grossjohann Index: gnus/lisp/nndiary.el diff -u gnus/lisp/nndiary.el:1.8 gnus/lisp/nndiary.el:1.9 --- gnus/lisp/nndiary.el:1.8 Wed Apr 16 15:23:05 2003 +++ gnus/lisp/nndiary.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; nndiary.el --- A diary backend for Gnus -;; Copyright (C) 1999, 2000, 2001 +;; Copyright (C) 1999, 2000, 2001, 2003 ;; Free Software Foundation, Inc. ;; Author: Didier Verna Index: gnus/lisp/nndoc.el diff -u gnus/lisp/nndoc.el:6.19 gnus/lisp/nndoc.el:6.20 --- gnus/lisp/nndoc.el:6.19 Sun Mar 30 16:21:56 2003 +++ gnus/lisp/nndoc.el Thu May 1 16:23:15 2003 @@ -1,5 +1,5 @@ ;;; nndoc.el --- single file access for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen Index: gnus/lisp/nnkiboze.el diff -u gnus/lisp/nnkiboze.el:6.8 gnus/lisp/nnkiboze.el:6.9 --- gnus/lisp/nnkiboze.el:6.8 Mon Mar 3 02:12:11 2003 +++ gnus/lisp/nnkiboze.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; nnkiboze.el --- select virtual news access for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen Index: gnus/lisp/nnmbox.el diff -u gnus/lisp/nnmbox.el:6.16 gnus/lisp/nnmbox.el:6.17 --- gnus/lisp/nnmbox.el:6.16 Sun Apr 13 13:28:19 2003 +++ gnus/lisp/nnmbox.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; nnmbox.el --- mail mbox access for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen Index: gnus/lisp/nnmh.el diff -u gnus/lisp/nnmh.el:6.11 gnus/lisp/nnmh.el:6.12 --- gnus/lisp/nnmh.el:6.11 Sun Feb 16 16:41:34 2003 +++ gnus/lisp/nnmh.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; nnmh.el --- mhspool access for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003 ;; Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen Index: gnus/lisp/nnml.el diff -u gnus/lisp/nnml.el:6.43 gnus/lisp/nnml.el:6.44 --- gnus/lisp/nnml.el:6.43 Mon Mar 3 06:39:16 2003 +++ gnus/lisp/nnml.el Thu May 1 16:23:15 2003 @@ -1,5 +1,5 @@ ;;; nnml.el --- mail spool access for Gnus -;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001 +;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003 ;; Free Software Foundation, Inc. ;; Author: Simon Josefsson (adding MARKS) Index: gnus/lisp/nnwarchive.el diff -u gnus/lisp/nnwarchive.el:6.6 gnus/lisp/nnwarchive.el:6.7 --- gnus/lisp/nnwarchive.el:6.6 Tue Mar 4 02:59:15 2003 +++ gnus/lisp/nnwarchive.el Thu May 1 16:23:15 2003 @@ -1,5 +1,5 @@ ;;; nnwarchive.el --- interfacing with web archives -;; Copyright (C) 1999, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: news egroups mail-archive Index: gnus/lisp/qp.el diff -u gnus/lisp/qp.el:6.13 gnus/lisp/qp.el:6.14 --- gnus/lisp/qp.el:6.13 Thu Apr 24 21:07:07 2003 +++ gnus/lisp/qp.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; qp.el --- Quoted-Printable functions -;; Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, extensions Index: gnus/lisp/rfc2047.el diff -u gnus/lisp/rfc2047.el:6.39 gnus/lisp/rfc2047.el:6.40 --- gnus/lisp/rfc2047.el:6.39 Sun Mar 23 15:43:08 2003 +++ gnus/lisp/rfc2047.el Thu May 1 16:23:15 2003 @@ -1,5 +1,5 @@ ;;; rfc2047.el --- Functions for encoding and decoding rfc2047 messages -;; Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; MORIOKA Tomohiko Index: gnus/lisp/rfc2231.el diff -u gnus/lisp/rfc2231.el:6.8 gnus/lisp/rfc2231.el:6.9 --- gnus/lisp/rfc2231.el:6.8 Thu Mar 20 23:55:39 2003 +++ gnus/lisp/rfc2231.el Thu May 1 16:23:15 2003 @@ -1,6 +1,6 @@ ;;; rfc2231.el --- Functions for decoding rfc2231 headers -;; Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2002, 2003 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. Index: gnus/texi/ChangeLog diff -u gnus/texi/ChangeLog:6.536 gnus/texi/ChangeLog:6.538 --- gnus/texi/ChangeLog:6.536 Thu May 1 14:31:25 2003 +++ gnus/texi/ChangeLog Thu May 1 17:49:43 2003 @@ -1,3 +1,8 @@ +2003-05-01 Reiner Steib + + * gnus.texi (Oort Gnus): Add prefix limit feature. + (Oort Gnus): Fix last commit. + 2003-05-01 Lars Magne Ingebrigtsen * gnus.texi (Emacsen): Update. Index: gnus/texi/gnus.texi diff -u gnus/texi/gnus.texi:6.504 gnus/texi/gnus.texi:6.507 --- gnus/texi/gnus.texi:6.504 Thu May 1 16:15:57 2003 +++ gnus/texi/gnus.texi Thu May 1 18:08:39 2003 @@ -33,7 +33,7 @@ \makeindex \begin{document} -\newcommand{\gnusversionname}{Oort Gnus v0.23} +\newcommand{\gnusversionname}{Oort Gnus v0.24} \newcommand{\gnuschaptername}{} \newcommand{\gnussectionname}{} @@ -389,7 +389,7 @@ spool or your mbox file. All at the same time, if you want to push your luck. -This manual corresponds to Oort Gnus v0.23. +This manual corresponds to Oort Gnus v0.24. @end ifinfo @@ -25146,6 +25146,13 @@ It was aliased to @kbd{Y c} (@code{gnus-summary-insert-cached-articles}). The new function filters out other articles. + +@item Some limiting commands accept a @kbd{C-u} prefix to negate the match. + +If @kbd{C-u} is used on subject, author or extra headers, i.e., @kbd{/ +s'}, @kbd{/ a}, and @kbd{/ x} +(@code{gnus-summary-limit-to-@{subject,author,extra@}}) respectively, the +result will be to display all articles that do not match the expression. @item Group names are treated as UTF-8 by default.