From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/25071 Path: main.gmane.org!not-for-mail From: "Rene H. Larsen" Newsgroups: gmane.emacs.gnus.general Subject: Workaround for quoted printable encoding of attachments Date: 11 Sep 1999 14:41:54 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: <87zoytd3hp.fsf@renehl.ournet.dk> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035162525 12151 80.91.224.250 (21 Oct 2002 01:08:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:08:45 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id IAA06351 for ; Sat, 11 Sep 1999 08:46:55 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id HAB25652; Sat, 11 Sep 1999 07:46:51 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 11 Sep 1999 07:46:58 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id HAA02449 for ; Sat, 11 Sep 1999 07:46:47 -0500 (CDT) Original-Received: from mail-in1.inet.tele.dk (mail-in1.inet.tele.dk [194.182.148.158]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id IAA06311 for ; Sat, 11 Sep 1999 08:44:43 -0400 (EDT) Original-Received: (qmail 1791 invoked from network); 11 Sep 1999 12:44:34 -0000 Original-Received: from ip158.ronnxr1.ras.tele.dk (HELO izzlazz.ournet.dk) (195.249.54.158) by mail-in1.inet.tele.dk with SMTP; 11 Sep 1999 12:44:34 -0000 Original-Received: from renehl.ournet.dk [192.168.0.1] (mail) by izzlazz.ournet.dk with esmtp (Exim 2.11 #1 (Debian)) id 11PmTb-0003Rq-00; Sat, 11 Sep 1999 14:41:55 +0200 Original-Received: from renehl by renehl.ournet.dk with local (Exim 3.03 #1 (Debian)) id 11PmTa-0001BR-00; Sat, 11 Sep 1999 14:41:54 +0200 Original-To: ding@gnus.org Original-Lines: 21 User-Agent: Gnus/5.070096 (Pterodactyl Gnus v0.96) XEmacs/20.4 (Emerald) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:25071 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:25071 If you, like me, have problems with binary attachments in pGnus being encoded as quoted printable instead of in base64, this may help you. Just insert this into your .gnus: (defun mm-qp-or-base64 () 'base64) This will effectively disable pGnus' (apparently broken) heuristics to determine whether a file is binary, and always choose base64 encoding. Unfortunately, "text/*" attachments will then also be base64 encoded. On the other hand, "message/rfc822" attachments are unaffected. This does not fix the underlying problem, but should merely be regarded as a workaround. HTH. -- #!/usr/bin/perl -w for(0..12){$b[$_]="|".($_==6?"-":" ")x78}for(0..78){substr($b[- (sin($_*3.1415/22)-1)*6.499],$_,1)="*"}print join "\n",@b,"";