From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/40454 Path: main.gmane.org!not-for-mail From: Niklas Morberg Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-summary-respool-trace for nnimap? Date: Wed, 21 Nov 2001 14:33:18 +0100 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=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1035176000 969 80.91.224.250 (21 Oct 2002 04:53:20 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:53:20 +0000 (UTC) Return-Path: Original-Received: (qmail 12740 invoked from network); 21 Nov 2001 13:35:05 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 21 Nov 2001 13:35:05 -0000 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 166XWc-0006ma-00; Wed, 21 Nov 2001 07:34:50 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 21 Nov 2001 07:33:45 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id HAA14515 for ; Wed, 21 Nov 2001 07:33:26 -0600 (CST) Original-Received: (qmail 12726 invoked by alias); 21 Nov 2001 13:33:08 -0000 Original-Received: (qmail 12721 invoked from network); 21 Nov 2001 13:33:08 -0000 Original-Received: from krynn.axis.se (193.13.178.10) by gnus.org with SMTP; 21 Nov 2001 13:33:08 -0000 Original-Received: from PCNIKLAS2 (dh10-13-8-217.axis.se [10.13.8.217]) by krynn.axis.se (8.12.1/8.12.1/Debian -2) with ESMTP id fALDWeCJ024369 for ; Wed, 21 Nov 2001 14:32:40 +0100 Original-To: ding@gnus.org In-Reply-To: (Kai.Grossjohann@CS.Uni-Dortmund.DE's message of "Wed, 21 Nov 2001 13:40:01 +0100") Original-Lines: 34 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.1 (i386-mingw-nt5.0.2195) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:40454 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:40454 Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Gro=DFjohann) writes: > If you do C-u g on the message, what do you see? Maybe the =F6 is QP > encoded, as "=3DF6", which contains a digit... > > But OTOH, that doesn't contain two or more digits. Hm. But maybe > the QP encoding has a leader like "=3D?iso-8859-1", which does contain > digits. The from address does indeed start with "=3D?iso-8859-1?Q?", so this would explain the unexpected behaviour. (And yes, the `=F6' is encoded as "=3DF6" as well.) I'm guessing this means that I can't write a regex that catches QP encoded characters? Using your message as an example: doing C-u g tells me that your name is encoded as "Kai =3D?iso-8859-1?q?Gro=3DDFjohann?=3D" which would mean that the regex "Gro=DF.*" would not match your name... Is there any way to let the regexes match against what I see in the message buffer instead of the raw contents? (I could of course match against "=3D\?iso-8859-1\?q\?Gro=3DDF.*" instead, but that seems a bit weird...) > FWIW, I think you can replace ".*[0-9]\\{2,\\}.*" with > ".*[0-9][0-9].*". Would this increase the efficiency in any way, or is it better for clarity? Niklas