From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/45080 Path: main.gmane.org!not-for-mail From: Hrvoje Niksic Newsgroups: gmane.emacs.gnus.general Subject: Re: Two gnus-posting-styles problems Date: Mon, 03 Jun 2002 19:49:38 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1023126787 8111 127.0.0.1 (3 Jun 2002 17:53:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 3 Jun 2002 17:53:07 +0000 (UTC) Cc: ding@gnus.org Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17Ew0x-00026h-00 for ; Mon, 03 Jun 2002 19:53:07 +0200 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 17EvyI-0007BH-00; Mon, 03 Jun 2002 12:50:22 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 03 Jun 2002 12:50:39 -0500 (CDT) 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 MAA29665 for ; Mon, 3 Jun 2002 12:50:28 -0500 (CDT) Original-Received: (qmail 15109 invoked by alias); 3 Jun 2002 17:50:06 -0000 Original-Received: (qmail 15099 invoked from network); 3 Jun 2002 17:50:06 -0000 Original-Received: from unknown (HELO florida.munich.redhat.com) (212.84.246.77) by gnus.org with SMTP; 3 Jun 2002 17:50:06 -0000 Original-Received: from hniksic by florida.munich.redhat.com with local (Exim 3.35 #1 (Debian)) id 17Evxa-00047V-00; Mon, 03 Jun 2002 19:49:38 +0200 Original-To: bugs@gnus.org (The Gnus Bugfixing Girls + Boys) X-Attribution: Hrvoje X-Face: &{dT~)Pu6V<0y?>3p$;@vh\`C7xB~A0T-J%Og)J,@-1%q6Q+, gs<-9M#&`I8cJp2b1{vPE|~+JE+gx;a7%BG{}nY^ehK1"q#rG O,Rn1A_Cy%t]V=Brv7h (Simon Josefsson's message of "Mon, 03 Jun 2002 19:40:10 +0200") Original-Lines: 35 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) XEmacs/21.4 (Common Lisp, i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:45080 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:45080 Simon Josefsson writes: > Perhaps > > ((header "from" "redhat.com") > (address "hniksic@redhat.com")) > > is useful? It's an improvement, but it doesn't solve the #1a problem. I have yet to try your patch. Can you explain what it is supposed to do? I'm not sure I understand the intention from reading the patch. >> 2. I tried to fix #1 by explicitly matching the stuff from the Message >> buffer, like this: >> >> ((and (message-fetch-field "to") >> (string-match "redhat\\.com" (message-fetch-field "to"))) >> (address "hniksic@redhat.com")) >> >> But that didn't work because `gnus-configure-posting-styles' is >> called from `message-mode-hook', which gets run when the Message >> buffer is still completely empty. It should be called at a later >> stage, when the buffer has already been set up. > > There's a dependency problem here, not all functions that use > information from the message buffer and modify the contents of the > message buffer can be called last. I think the ordering has changed > several times, but it won't ever satisfy everyone. I think the > approach should be that you shouldn't count on information being > available in the message buffers unless... err, it is available. I'm not sure I understand this. Why can't it satisfy everyone? What is the position opposite to mine?