From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/6656 Path: main.gmane.org!not-for-mail From: eichin@kitten.gen.ma.us (Mark W. Eichin) Newsgroups: gmane.emacs.gnus.general Subject: batch operations on destination fields? Date: 13 Jun 1996 00:19:07 -0400 Sender: eichin@paycheck.kitten.gen.ma.us Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035147080 4348 80.91.224.250 (20 Oct 2002 20:51:20 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:51:20 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.5/8.6.9) with SMTP id VAA27602 for ; Wed, 12 Jun 1996 21:49:00 -0700 Original-Received: from cygnus.com (cygnus.com [140.174.1.1]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Thu, 13 Jun 1996 06:20:33 +0200 Original-Received: from tweedledumb.cygnus.com (tweedledumb.cygnus.com [192.80.44.1]) by cygnus.com (8.6.12/8.6.9) with SMTP id VAA17471 for ; Wed, 12 Jun 1996 21:20:30 -0700 Original-Received: by tweedledumb.cygnus.com (4.1/4.7) id AA26620; Thu, 13 Jun 96 00:20:28 EDT Original-Received: (from eichin@localhost) by paycheck.cygnus.com (8.7.5/8.6.12) id AAA19091; Thu, 13 Jun 1996 00:19:11 -0400 Original-To: ding@ifi.uio.no Original-Lines: 22 X-Mailer: Gnus v5.2.14/Emacs 19.31 Xref: main.gmane.org gmane.emacs.gnus.general:6656 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:6656 I'd like to go through a gnus-summary and mark every article where the to, cc, resent-*, or apparently-to (the "destination" fields) contain a string, and then move them en-masse to another folder. So far, repeated (after an initial ) followed by does the right thing. It's tedious, though, and I have a lot of these. gnus-summary-limit-to-author looked ideal, except it looks only at the From field and I want to look at just about everything *else*. Unfortunately, gnus-summary-find-matching only works on headers that are cached in gnus-data-header as part of gnus-newsgroup-data. Is there a gnus function that will give me a list of articles that match a regexp? , via gnus-uu-find-articles-matching, looked almost right but it doesn't actually search the headers, only the subjects. Do I basically need to use gnus-summary-search-article (or something stripped down from it, that doesn't do the window manipulation) and iterate? (If so, I'll do that and post it here.) I don't need speed per se - I'm just looking for automation...