From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/52687 Path: main.gmane.org!not-for-mail From: (Vladimir Volovich) Newsgroups: gmane.emacs.gnus.general Subject: sender name on followup is not extracted properly for certain kinds of From headers... Date: Thu, 15 May 2003 13:42:32 +0400 Sender: ding-owner@lists.math.uh.edu Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1052991909 30513 80.91.224.249 (15 May 2003 09:45:09 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 15 May 2003 09:45:09 +0000 (UTC) Original-X-From: ding-owner+M1231@lists.math.uh.edu Thu May 15 11:45:07 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19GFI8-0007u2-00 for ; Thu, 15 May 2003 11:44:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19GFJG-0004L6-00; Thu, 15 May 2003 04:45:58 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19GFJ4-0004Ky-00 for ding@lists.math.uh.edu; Thu, 15 May 2003 04:45:46 -0500 Original-Received: (qmail 54655 invoked by alias); 15 May 2003 09:45:46 -0000 Original-Received: (qmail 54645 invoked from network); 15 May 2003 09:45:45 -0000 Original-Received: from relay1.vsu.ru (HELO vsu.ru) (62.76.169.14) by sclp3.sclp.com with SMTP; 15 May 2003 09:45:45 -0000 Original-Received: from vvv.vsu.ru ([62.76.223.138] verified) by vsu.ru (CommuniGate Pro SMTP 4.1b6) with ESMTP id 2674419; Thu, 15 May 2003 13:45:35 +0400 Original-To: ding@gnus.org, bugs@gnus.org User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.2 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:52687 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:52687 Hi! this is probably a bug in supercite (not gnus), but anyway... i use the following setup: (setq sc-preferred-header-style 0 sc-rewrite-header-list '((my-header-line-generator)) sc-citation-leader " " sc-confirm-always-p nil sc-preferred-attribution-list '( "x-attribution" "initials" "firstname" "sc-lastchoice" ) ) (defun my-header-line-generator () (let ((sc-mumble "") (whofrom (sc-whofrom))) (if whofrom (insert sc-reference-tag-string (sc-hdr "\"" (sc-mail-field "sc-attribution") "\" == ") (sc-hdr "" (sc-mail-field "sc-author") " ") "writes:\n")))) when the From header looks like in this email, i.e. From: (Vladimir Volovich) and i followup on that email, gnus doesn't seem to grok the sender correctly, and prepares the buffer which contains writes: instead of "VV" == Vladimir Volovich writes: It seems that (sc-mail-field "sc-attribution") and (sc-mail-field "sc-author") do not work as expected for the From: syntax shown above. Does anyone know how to fix that? Is this my fault, or it's a bug in supercite? Best, v.