From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/68736 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.gnus.general Subject: Re: Message contains characters with unknown encoding. Really send? (y or n) Date: Thu, 16 Jul 2009 10:52:04 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <87prc0pqvv.fsf@lifelogs.com> 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 1247759573 25961 80.91.229.12 (16 Jul 2009 15:52:53 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 16 Jul 2009 15:52:53 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M17160@lists.math.uh.edu Thu Jul 16 17:52:46 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 1MRTGF-0005oJ-KZ for ding-account@gmane.org; Thu, 16 Jul 2009 17:52:43 +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 1MRTFr-0001xh-06; Thu, 16 Jul 2009 10:52:19 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1MRTFp-0001xR-8Y for ding@lists.math.uh.edu; Thu, 16 Jul 2009 10:52:17 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1MRTFn-0008NI-S7 for ding@lists.math.uh.edu; Thu, 16 Jul 2009 10:52:17 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1MRTGL-000447-00 for ; Thu, 16 Jul 2009 17:52:49 +0200 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1MRTFn-0006bH-1i for ding@gnus.org; Thu, 16 Jul 2009 15:52:15 +0000 Original-Received: from 38.98.147.130 ([38.98.147.130]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Jul 2009 15:52:15 +0000 Original-Received: from tzz by 38.98.147.130 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Jul 2009 15:52:15 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 42 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 38.98.147.130 X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6;d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.1.50 (gnu/linux) Cancel-Lock: sha1:cz9y2JzyZHZSfLYHzJjv3wlXCMU= X-Spam-Score: -1.5 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:68736 Archived-At: On Thu, 16 Jul 2009 07:42:51 +0900 Katsumi Yamaoka wrote: >>>>>> 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)" KY> [...] KY> It's issued by `mml-to-mime' that nnrss uses for making a MIME KY> article from html data. The sequence is: KY> nnrss-request-article KY> mml-to-mime KY> message-encode-message-body KY> mml-generate-mime KY> mml-parse KY> mml-parse-1 KY> If html data contain funny characters, maybe as MML functions are KY> assumed to be used for message sending, such a prompt is issued. KY> The possible solutions might be: KY> 1. Allow nnrss to generate articles with no query even if it might KY> cause unreadable articles. KY> --- nnrss.el~ 2009-01-22 08:09:02 +0000 KY> +++ nnrss.el 2009-07-15 22:41:29 +0000 KY> @@ -313 +313,3 @@ KY> - (mml-to-mime) KY> + (let ((mml-confirmation-set KY> + (cons 'unknown-encoding mml-confirmation-set))) KY> + (mml-to-mime)) KY> 2. Make the prompt message general, like: KY> "...Really send? (y or n) " -> "...Continue? (y or n) " KY> I vote for 1. My vote is for 1 as well. Thanks for looking into this! Ted