From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/859 Path: news.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.user Subject: Re: Question about HTML emails (revisited) Date: Thu, 01 Aug 2002 14:37:42 -0400 Organization: What did you have in mind? A short, blunt, human pyramid? Message-ID: References: <87lme3ppd2.fsf@phiwumbda.localnet> <87ptx5rlja.fsf_-_@phiwumbda.localnet> <873ctz1xot.fsf@phiwumbda.localnet> <87sn1z397b.fsf@phiwumbda.localnet> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138667749 8713 80.91.229.2 (31 Jan 2006 00:35:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:35:49 +0000 (UTC) Cc: jesseh@cs.kun.nl (Jesse F. Hughes) Original-X-From: nobody Tue Jan 17 17:28:13 2006 Original-Path: quimby.gnus.org!news.ccs.neu.edu!news.dfci.harvard.edu!news.harvard.edu!iad-peer.news.verio.net!news.verio.net!news.maxwell.syr.edu!news-out.visi.com!hermes.visi.com!usenet.INS.cwru.edu!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: multivac.student.cwru.edu Original-X-Trace: eeyore.INS.cwru.edu 1028227063 21947 129.22.96.25 (1 Aug 2002 18:37:43 GMT) Original-X-Complaints-To: abuse@po.cwru.edu Original-NNTP-Posting-Date: 1 Aug 2002 18:37:43 GMT Mail-Copies-To: nobody User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2 (i686-pc-linux-gnu) Cancel-Lock: sha1:BmmBTZCFdftsgZK1Z78ihTEp0Dc= Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:999 Original-Lines: 38 X-Gnus-Article-Number: 999 Tue Jan 17 17:28:13 2006 Xref: news.gmane.org gmane.emacs.gnus.user:859 Archived-At: jesseh@cs.kun.nl (Jesse F. Hughes) wrote: > jesseh@cs.kun.nl (Jesse F. Hughes) writes: >> prj@po.cwru.edu (Paul Jarc) writes: >>> jesseh@cs.kun.nl (Jesse F. Hughes) wrote: >>>> (mm-automatic-display >>>> (cons "text/html" mm-automatic-display)) >>> >>> I don't think this will work. mm-automatic-display will be set to the >>> literal value '("text/html" . mm-automatic-display); Actually, the more sensible literal expectation would be the list '(cons "text/html" mm-automatic-display); i.e., both cons and m-a-d would be treated as uninterpreted symbols. > The problem is that the commands below set the default value of > mm-automatic-display to nil. This is where you run into troubles. ... >>> (require 'gnus-sum) >>> (add-to-list 'gnus-newsgroup-variables 'mm-automatic-display) >>> (add-to-list 'gnus-newsgroup-variables 'mm-discouraged-alternatives) I'd say that's a bug, but you could probably work around it with something like this: (setq gnus-parameters `(("" ;; explicitly specify the defaults (mm-automatic-display ,mm-automatic-display) (mm-discouraged-alternatives ,mm-discouraged-alternatives)) ("\\`nnslashdot[+:]" ;; override for nnslashdot groups (mm-automatic-display ,(cons "text/html" mm-automatic-display)) (mm-discouraged-alternatives ,(remove "text/html" (remove "text/richtext" mm-discouraged-alternatives)))))) This assumes you first set m-a-d and m-d-a to the appropriate values for non-slashdot groups. paul