From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24629 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: Missing QP encoding of header? Date: 07 Aug 1999 03:56:20 -0400 Organization: U of Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <2n907ogh23.fsf@tiger.jia.vnet> References: <2ng11w1oag.fsf@tiger.jia.vnet> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1035162161 9723 80.91.224.250 (21 Oct 2002 01:02:41 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:02:41 +0000 (UTC) Return-Path: Original-Received: from farabi.math.uh.edu (farabi.math.uh.edu [129.7.128.57]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id DAA00824 for ; Sat, 7 Aug 1999 03:59:24 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by farabi.math.uh.edu (8.9.3/8.9.3) with ESMTP id CAB16249; Sat, 7 Aug 1999 02:55:43 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 07 Aug 1999 02:56:41 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id CAA18915 for ; Sat, 7 Aug 1999 02:56:31 -0500 (CDT) Original-Received: from cayuga.cs.rochester.edu (cayuga.cs.rochester.edu [192.5.53.209]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id DAA00784 for ; Sat, 7 Aug 1999 03:55:21 -0400 (EDT) Original-Received: from heart.cs.rochester.edu (heart.cs.rochester.edu [192.5.53.109]) by cayuga.cs.rochester.edu (8.9.3/Q) with ESMTP id DAA14035 for ; Sat, 7 Aug 1999 03:54:46 -0400 (EDT) Original-Received: (from zsh@localhost) by heart.cs.rochester.edu (8.9.3/8.9.3) id DAA06482; Sat, 7 Aug 1999 03:56:20 -0400 Original-To: ding@gnus.org X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: Kai.Grossjohann@CS.Uni-Dortmund.DE's message of "07 Aug 1999 09:30:42 +0200" Original-Lines: 33 User-Agent: Gnus/5.070095 (Pterodactyl Gnus v0.95) XEmacs/21.2 (Shinjuku) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24629 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24629 >>>>> "KG" == Kai Großjohann writes: KG> Hm? I set message-default-headers in ~/.gnus, but the problem isn't KG> that there is a \201 or something. The problem is that I expected KG> From: address (Kai =?iso-8859-1?q?Gro=DFjohann?=) KG> and what I got was KG> From: address (Kai Großjohann) KG> Please note the missing quoted printable encoding. KG> Does Gnus behave differently in news and mail groups? You are right. In message-send-mail, headers are encoded by (mail-encode-encoded-word-buffer) while in message-send-news, headers are encoded by (let ((mail-parse-charset message-posting-charset)) (mail-encode-encoded-word-buffer)) Therefore, if message-posting-charset is iso-8859-1, then your name will not be encoded in news. message-posting-charset is a local variable in message buffer. You can use gnus-group-posting-charset-alist to configure it. For example, if you always want your name encoded, you can set it to ((".*" nil)) or just nil. -- Shenghuo ZHU