From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/17210 Path: main.gmane.org!not-for-mail From: Christian Kurz Newsgroups: gmane.emacs.gnus.general Subject: Re: no face Date: 17 Sep 1998 21:17:56 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: <87vhmmft0a.fsf@jupiter.rhein-neckar.de> References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035155952 32206 80.91.224.250 (20 Oct 2002 23:19:12 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:19:12 +0000 (UTC) Return-Path: Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id QAA03315 for ; Thu, 17 Sep 1998 16:20:55 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id OAF09506; Thu, 17 Sep 1998 14:51:48 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 17 Sep 1998 15:19:16 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id PAA19447 for ; Thu, 17 Sep 1998 15:19:07 -0500 (CDT) Original-Received: from birdland.rhein-neckar.de (root@birdland.rhein-neckar.de [193.197.88.3]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id QAA03281 for ; Thu, 17 Sep 1998 16:18:55 -0400 (EDT) Original-Received: from jupiter.rhein-neckar.de (uucp@localhost) by birdland.rhein-neckar.de (8.8.7/8.8.3) with bsmtp id WAA24578 for ding@gnus.org; Thu, 17 Sep 1998 22:18:50 +0200 (MET DST) Original-Received: from shorty by jupiter.rhein-neckar.de with local (Exim 2.02 #1) id 0zJjYz-0000pn-00 for ding@gnus.org; Thu, 17 Sep 1998 21:17:57 +0200 Original-To: ding@gnus.org X-URL: http://www.rhein-neckar.de/~jupiter/ X-GPG-Key-ID: 34F009EC Mail-Copies-To: never X-Face: ,5d*[fnh?N6m,4)jR*Z:=zu$*o}Nle"-;_wH8h_'Z>Wd(z9mn]NA<3%KE}jtni)&B-Si"+3 OK|S3T+:,;bYmmDnvQ8,s<=5#5g>5cIv]ah.4-h{yb(DItw.7'$R7N.Qi\79bCL wrote: > This didn't work... believe it or not. I use the following code in my .gnus to insert my xface. Probably it works for you, too. ;;* ;;*X-Face ;;*=============================== (defun mail-insert-x-face () (save-excursion (goto-char (point-min)) (search-forward mail-header-separator) (beginning-of-line) (insert "X-Face:") (insert-file-contents "~/.face"))) (add-hook 'message-setup-hook 'mail-insert-x-face) Regards Christian