Gnus development mailing list
 help / color / mirror / Atom feed
From: "Johan Kullstam" <kullstam@ne.mediaone.net>
Cc: Gnus Ding List <ding@gnus.org>
Subject: Re: archives of the list? / base64 attachments?
Date: 20 Sep 1999 17:42:32 -0400	[thread overview]
Message-ID: <m2emft5kfr.fsf@sophia.axel.nom> (raw)
In-Reply-To: Matt McClure's message of "20 Sep 1999 10:02:09 -0400"

Matt McClure <matthew.mcclure.es.99@aya.yale.edu> writes:

> Are messages to this list archived somewhere?
> 
> I apologize if this has been talked about hundreds of times already.  Is
> it possible to attach a file to a message using base64 as the Content
> Transfer Encoding?  Every attachment I've sent has been encoded as
> quoted-printable by gnus.  I'm using pgnus 0.96.

yes.  look at the variable mm-content-transfer-encoding-defaults.  put
in your .gnus.el the following incantation:

(setq mm-content-transfer-encoding-defaults
  '(("text/x-patch" 8bit)
    ("text/.*" qp-or-base64)           ;; <- i am strongly considering
                                       ;;    plain base64 here
    ("message/rfc822" 8bit)
    ("application/emacs-lisp" 8bit)
    ("application/x-patch" 8bit)
    (".*" base64)))                    ;; <- this was qp-or-base64

the doc string for qp-or-base64 claims that it will choose the `best'
encoding format but my experience is that it always uses
quoted-printable regardless.  

for compressed binaries, the quoted-printable representation is much
larger than base64.  quoted printable can easily double the size of a
binary attachment.  

quoted-printable is also slow compared to base64.  e.g., i takes
about a minute to send a 1 megabyte compressed archive with
quotedprintable compared to a second or two for base64.

quoted-printable is either broken up front or doesn't survive sending
by qmail.  

i see qp losing to base64 for all these reasons.  i don't know what
criteron is used to select `best'.  whatever it is, it seems bogus to
me.

in light of all this, i am tempted to change qp-or-base64 for text
junk to base64 too.

-- 
J o h a n  K u l l s t a m
[kullstam@ne.mediaone.net]
Don't Fear the Penguin!


  parent reply	other threads:[~1999-09-20 21:42 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-09-20 14:02 Matt McClure
1999-09-20 15:15 ` Kai Großjohann
1999-09-20 15:28   ` Norbert Koch
1999-09-20 21:42 ` Johan Kullstam [this message]
1999-09-20 22:51 ` Jason R Mastaler

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=m2emft5kfr.fsf@sophia.axel.nom \
    --to=kullstam@ne.mediaone.net \
    --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).