From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/38703 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: Docs on S/MIME and GPG with Oort ? Date: Mon, 10 Sep 2001 14:00:00 +0200 Message-ID: References: <87wv3f6kup.fsf@mclinux.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035174522 23842 80.91.224.250 (21 Oct 2002 04:28:42 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:28:42 +0000 (UTC) Cc: ding@gnus.org Return-Path: Return-Path: Original-Received: (qmail 9507 invoked from network); 10 Sep 2001 12:00:38 -0000 Original-Received: from dolk.extundo.com (195.42.214.242) by gnus.org with SMTP; 10 Sep 2001 12:00:38 -0000 Original-Received: from barbar.josefsson.org (slipsten.extundo.com [195.42.214.241]) (authenticated) by dolk.extundo.com (8.11.6/8.11.6) with ESMTP id f8AC0eh29663; Mon, 10 Sep 2001 14:00:41 +0200 Original-To: Vincent Bernat In-Reply-To: (Vincent Bernat's message of "Mon, 10 Sep 2001 13:36:41 +0200") Mail-Copies-To: nobody User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.0.105 Original-Lines: 56 Xref: main.gmane.org gmane.emacs.gnus.general:38703 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:38703 Vincent Bernat writes: >> I don't understand, > >> (let ((gnus-buttonized-mime-types '("multipart/signed")) >> (gnus-unbuttonized-mime-types '("text/plain"))) >> (gnus-unbuttonized-mime-type-p "multipart/signed")) > >> evaluates to nil here. > > Here too. However > > (let ((gnus-buttonized-mime-types '("multipart/signed")) > (gnus-unbuttonized-mime-types '(".*/.*"))) > (gnus-unbuttonized-mime-type-p "multipart/signed")) > > evaluates to t. Then I think your installation is b0rked. >> Are you sure you re-compiled and re-installed the Oort Gnus updated >> from CVS properly? > > I have used > > ./configure \ > --infodir=$HOME/.xemacs/xemacs-packages/info \ > --with-lispdir=$HOME/.xemacs/xemacs-packages/lisp/gnus \ > --with-etcdir=$HOME/.xemacs/xemacs-packages/etc > make > make install > > And I get Oort Gnus (otherwise, I would get pGnus, since it is the one > which comes with XEmacs). Do you have any lisp-shadows for gnus-art.el (M-x list-load-path-shadows)? If you M-x locate-library RET gnus-art.el RET and locate the function definition, does it look like: (defun gnus-unbuttonized-mime-type-p (type) "Say whether TYPE is to be unbuttonized." (unless gnus-inhibit-mime-unbuttonizing (when (catch 'found (let ((types gnus-unbuttonized-mime-types)) (while types (when (string-match (pop types) type) (throw 'found t))))) (not (catch 'found (let ((types gnus-buttonized-mime-types)) (while types (when (string-match (pop types) type) (throw 'found t))))))))) It should.