From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/31386 Path: main.gmane.org!not-for-mail From: Harry Putnam Newsgroups: gmane.emacs.gnus.general Subject: Re: Remove jive trailers from messages Date: 12 Jun 2000 03:27:52 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035167802 13671 80.91.224.250 (21 Oct 2002 02:36:42 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:36:42 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by mailhost.sclp.com (Postfix) with ESMTP id 777A5D051E for ; Mon, 12 Jun 2000 06:29:37 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.3/8.9.3) with ESMTP id FAC25309; Mon, 12 Jun 2000 05:29:26 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 12 Jun 2000 05:28:29 -0500 (CDT) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id FAA20594 for ; Mon, 12 Jun 2000 05:28:18 -0500 (CDT) Original-Received: from mail.networkone.net (mail.networkone.net [209.144.112.75]) by mailhost.sclp.com (Postfix) with SMTP id F2010D051E for ; Mon, 12 Jun 2000 06:28:46 -0400 (EDT) Original-Received: (qmail 9078 invoked from network); 12 Jun 2000 10:28:45 -0000 Original-Received: from adsl-117-113.ln.networkone.net (HELO reader.ptw.com) (209.144.117.113) by mail.networkone.net with SMTP; 12 Jun 2000 10:28:45 -0000 Original-Received: (from reader@localhost) by reader.ptw.com (8.9.3/8.9.3) id DAA21528; Mon, 12 Jun 2000 03:28:39 -0700 Original-To: ding@gnus.org User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.5 Original-Lines: 37 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:31386 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:31386 Karl Kleinpaste writes: > This is really vile, but what I'm using these days is this group > property for onelist/egroups lists: > > (banner . "^\\(> ?\\)?------------------------------------------------------------------------\n\\(.\\|\n\\)*") > > Beware, quoted banners can begin the cutoff, which is (only very > occasionally) a false positive. Diddle with the "> " stuff to stop > that particular misfeasance. Personally, I like it that way, because > people who are dim-witted enough to quote banners are generally people > who are dim-witted enough to be uninteresting to read at all anyway. Seems like your RE should have caught this dodo's quoted banner [...] > > ------------------------------------------------------------------------ > > Want to win airfare to Vegas for you and 20 friends, $15,000 and a [...] But it slips through. Unless I'm reading your RE wrong it says something like: Lines begining with >SPC one or no repeat of one or no repeat of whole string from > Neither of the RE below nails it either (banner . "^\\(> ?\\|>\\)?------------------------------------------------------------------------\n\\(.\\|\n\\)*") (banner . "^\\(> >\\|?\\)?------------------------------------------------------------------------\n\\(.\\|\n\\)*")) I notice quite a hefty pause while gnus scans the banner I guess, then it pops into view. This was a rare instance to be sure so it is not really a problem, just made me wonder what I don't know about the "?" operator.