From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/56171 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: [Q]: PDF attachments and Gnus Date: Thu, 22 Jan 2004 23:41:49 +0100 Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1074811419 2826 80.91.224.253 (22 Jan 2004 22:43:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Jan 2004 22:43:39 +0000 (UTC) Original-X-From: ding-owner+M4711@lists.math.uh.edu Thu Jan 22 23:43:32 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AjnXv-0003I8-00 for ; Thu, 22 Jan 2004 23:43:32 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1AjnXP-0004Lx-00; Thu, 22 Jan 2004 16:42:59 -0600 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1AjnXG-0004Ks-00 for ding@lists.math.uh.edu; Thu, 22 Jan 2004 16:42:50 -0600 Original-Received: from pfepa.post.tele.dk (pfepa.post.tele.dk [195.41.46.235]) by justine.libertine.org (Postfix) with ESMTP id DF5563A0026 for ; Thu, 22 Jan 2004 16:42:49 -0600 (CST) Original-Received: from [195.249.82.219] (0xc3f952db.esnxr1.ras.tele.dk [195.249.82.219]) by pfepa.post.tele.dk (Postfix) with ESMTP id C4F3F47FF0D for ; Thu, 22 Jan 2004 23:42:47 +0100 (CET) Original-To: ding@gnus.org Mail-Followup-To: ding@gnus.org In-Reply-To: (Xavier Maillard's message of "Thu, 22 Jan 2004 23:31:33 +0100") User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:56171 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:56171 Xavier Maillard writes: > I have a question: what is the supposed encoding to be used when > sending a pdf file as attachment ? base64. > I currently use base64 encoding which seems to be problematic for > Outlook users. In which way? > Here is how I set it up: > > ,---- > | (setq mm-content-transfer-encoding-defaults > | '(("text/x-patch" 8bit) > | ("text/.*" qp-or-base64) > | ("message/rfc822" 8bit) > | ("application/emacs-lisp" 8bit) > | ("application/x-patch" 8bit) > | ("application/pdf" base64) > | (".*" base64))) > `---- The application/pdf entry is redundant. Everything that doesn't have an entry is base64 encoded, so adding the pdf entry does not make any difference.