Gnus development mailing list
 help / color / mirror / Atom feed
From: Simon Josefsson <jas@extundo.com>
Cc: ding@gnus.org
Subject: Re: Docs on S/MIME and GPG with Oort ?
Date: Mon, 10 Sep 2001 14:00:00 +0200	[thread overview]
Message-ID: <iluelpfjlxb.fsf@barbar.josefsson.org> (raw)
In-Reply-To: <m3g09v46ra.fsf@neo.loria> (Vincent Bernat's message of "Mon, 10 Sep 2001 13:36:41 +0200")

Vincent Bernat <bernat@free.fr> 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.



  reply	other threads:[~2001-09-10 12:00 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-09-01 17:42 Vincent Bernat
2001-09-01 20:35 ` Simon Josefsson
2001-09-01 21:48   ` Vincent Bernat
2001-09-04 15:23     ` Josh Huber
2001-09-05 21:06       ` Raja R Harinath
2001-09-08 16:59         ` Vincent Bernat
2001-09-08 18:35           ` Simon Josefsson
2001-09-08 21:56             ` Vincent Bernat
2001-09-09 11:13               ` Simon Josefsson
2001-09-09 11:54                 ` Vincent Bernat
2001-09-10  9:42                   ` Simon Josefsson
2001-09-10 11:36                     ` Vincent Bernat
2001-09-10 12:00                       ` Simon Josefsson [this message]
2001-09-10 13:41                         ` Vincent Bernat
2001-09-10 13:41                           ` Simon Josefsson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=iluelpfjlxb.fsf@barbar.josefsson.org \
    --to=jas@extundo.com \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).