From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/85404 Path: news.gmane.org!not-for-mail From: Julien Cubizolles Newsgroups: gmane.emacs.gnus.general Subject: Re: choosing iso-8859-1 over utf-8 for some newsgroups Date: Tue, 30 Dec 2014 00:11:12 +0100 Message-ID: <87sifyvypb.fsf@free.fr> References: <87ppb2a0kk.fsf@free.fr> <87oaqms6jc.fsf@topper.koldfront.dk> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1419894766 22873 80.91.229.3 (29 Dec 2014 23:12:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 29 Dec 2014 23:12:46 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M33646@lists.math.uh.edu Tue Dec 30 00:12:38 2014 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 1Y5jUI-0004FW-S3 for ding-account@gmane.org; Tue, 30 Dec 2014 00:12:35 +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 1Y5jTJ-0003jo-HC; Mon, 29 Dec 2014 17:11:33 -0600 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 1Y5jTG-0003jb-Q0 for ding@lists.math.uh.edu; Mon, 29 Dec 2014 17:11:30 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1Y5jTF-0002ad-6g for ding@lists.math.uh.edu; Mon, 29 Dec 2014 17:11:30 -0600 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1Y5jTD-0005sD-5E for ding@gnus.org; Tue, 30 Dec 2014 00:11:27 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Y5jTC-0003Lq-ED for ding@gnus.org; Tue, 30 Dec 2014 00:11:26 +0100 Original-Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 30 Dec 2014 00:11:26 +0100 Original-Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 30 Dec 2014 00:11:26 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 38 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: gas45-3-82-244-252-119.fbx.proxad.net User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) Cancel-Lock: sha1:BuehNIUVuOO9GLXkl9N1EzcM0nI= X-Spam-Score: -2.9 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:85404 Archived-At: asjo@koldfront.dk (Adam Sjøgren) writes: > One thing to try is to temporarily configure Gnus to use iso-8859-1 > globally: > > (setq message-default-charset 'iso-8859-1) ;; Not sure if this is used > (setq mm-coding-system-priorities '(iso-8859-1 utf-8)) With this setup, I can post to the group, so it's the following that's not working --8<---------------cut here---------------start------------->8--- (add-to-list 'gnus-newsgroup-variables 'mm-coding-system-priorities) (setq gnus-parameters (nconc ;; Some charsets are just examples! '(("^proxad\\." ;; Free n'accepte pas l'utf-8 (mm-coding-system-priorities '(iso-8859-1 utf-8))) (".*" (mm-coding-system-priorities '(utf-8)))) gnus-parameters)) --8<---------------cut here---------------end--------------->8--- I guess the ".*" was overriding the "^proxad\\." setting. I'm now using --8<---------------cut here---------------start------------->8--- (setq mm-coding-system-priorities '(utf8)) (add-to-list 'gnus-newsgroup-variables 'mm-coding-system-priorities) (setq gnus-parameters (nconc ;; Some charsets are just examples! '(("^proxad\\." ;; Free n'accepte pas l'utf-8 (mm-coding-system-priorities '(iso-8859-1 utf-8))) ;; (".*" (mm-coding-system-priorities '(utf-8))) ) gnus-parameters)) --8<---------------cut here---------------end--------------->8---