From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/83008 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: X-Sent with Ma Gnus Date: Fri, 22 Mar 2013 19:42:45 +0900 Organization: Emacsen advocacy group Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1363949021 6889 80.91.229.3 (22 Mar 2013 10:43:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 22 Mar 2013 10:43:41 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M31274@lists.math.uh.edu Fri Mar 22 11:44:08 2013 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UIzS8-00037a-Gy for ding-account@gmane.org; Fri, 22 Mar 2013 11:44:04 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1UIzRB-0001sT-LK; Fri, 22 Mar 2013 05:43:05 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1UIzR8-0001s2-9E for ding@lists.math.uh.edu; Fri, 22 Mar 2013 05:43:02 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1UIzR6-0002Et-Ds for ding@lists.math.uh.edu; Fri, 22 Mar 2013 05:43:01 -0500 Original-Received: from mail-hampton.hostforweb.net ([216.246.13.138] helo=hampton.hostforweb.net) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1UIzR4-0004NM-LZ for ding@gnus.org; Fri, 22 Mar 2013 11:42:58 +0100 Original-Received: from localhost.localdomain ([127.0.0.1]:36683 helo=localhost) by hampton.hostforweb.net with smtp (Exim 4.80) (envelope-from ) id 1UIzQv-003dEb-Dc for ding@gnus.org; Fri, 22 Mar 2013 05:42:49 -0500 X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.130006 (=?iso-2022-jp?B?GyRCPz8bKEI=?= Gnus v0.6) Emacs/24.3.50 (i686-pc-cygwin) Cancel-Lock: sha1:cQg3P2Lz4IomlvRY59TUyk4nGoM= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - hampton.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Get-Message-Sender-Via: hampton.hostforweb.net: acl_c_authenticated_local_user: root X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -0.0 (/) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:83008 Archived-At: Gabor Z. Papp wrote: > how could I get back the X-Sent 'lapsed header with Ma Gnus? If you aren't satisfied with (setq gnus-article-date-headers '(lapsed)) ;; [1] that produces `Date: lapsed', but really want `X-Sent: lapsed', try this: (setq gnus-article-date-headers '(user-defined)) (setq gnus-article-time-format (lambda (time) (concat "X-Sent: " (article-lapsed-string time)))) Otherwise, if you want X-Sent in addition to Date expressed in local time, for example, you can do it like: (setq gnus-article-time-format (lambda (time) (concat "Date: " (message-make-date time) "\n" "X-Sent: " (article-lapsed-string time)))) The only difficulty of this way is to display the original date a sender made. [1] (info "(gnus)Customizing Articles")