From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/68730 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Message contains characters with unknown encoding. Really send? (y or n) Date: Thu, 16 Jul 2009 07:42:51 +0900 Organization: Emacsen advocacy group Message-ID: References: <87bpnoydky.fsf@jidanni.org> <8763duudya.fsf@lifelogs.com> <87k529u88v.fsf@marauder.physik.uni-ulm.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1247697871 29371 80.91.229.12 (15 Jul 2009 22:44:31 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 15 Jul 2009 22:44:31 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M17155@lists.math.uh.edu Thu Jul 16 00:44:24 2009 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1MRDD1-0007Oa-MM for ding-account@gmane.org; Thu, 16 Jul 2009 00:44:19 +0200 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 1MRDCZ-00049i-Ls; Wed, 15 Jul 2009 17:43:51 -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 1MRDCX-00049S-Vo for ding@lists.math.uh.edu; Wed, 15 Jul 2009 17:43:49 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1MRDCL-000084-Mh for ding@lists.math.uh.edu; Wed, 15 Jul 2009 17:43:49 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1MRDCt-0000cQ-00 for ; Thu, 16 Jul 2009 00:44:11 +0200 Original-Received: from localhost ([127.0.0.1]:51609) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1MRDBj-00023I-EU for ding@gnus.org; Wed, 15 Jul 2009 17:43:00 -0500 X-Hashcash: 1:20:090715:ding@gnus.org::Lf55vyvM2nZ6BClZ:00005EtF 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.110011 (No Gnus v0.11) Emacs/23.1.50 (gnu/linux) Cancel-Lock: sha1:0f2amq0SUDePyBIZ0fPAzFEwgPA= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.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-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:68730 Archived-At: >>>>> Reiner Steib wrote: > On Wed, Jul 15 2009, Ted Zlatanov wrote: >> On Mon, 13 Jul 2009 20:25:33 +0800 jidanni@jidanni.org wrote: >> j> There I was, using NNRSS, when I was asked >> j> "Message contains characters with unknown encoding. Really send? (y or n)" [...] It's issued by `mml-to-mime' that nnrss uses for making a MIME article from html data. The sequence is: nnrss-request-article mml-to-mime message-encode-message-body mml-generate-mime mml-parse mml-parse-1 If html data contain funny characters, maybe as MML functions are assumed to be used for message sending, such a prompt is issued. The possible solutions might be: 1. Allow nnrss to generate articles with no query even if it might cause unreadable articles. --- nnrss.el~ 2009-01-22 08:09:02 +0000 +++ nnrss.el 2009-07-15 22:41:29 +0000 @@ -313 +313,3 @@ - (mml-to-mime) + (let ((mml-confirmation-set + (cons 'unknown-encoding mml-confirmation-set))) + (mml-to-mime)) 2. Make the prompt message general, like: "...Really send? (y or n) " -> "...Continue? (y or n) " I vote for 1.