Re: questions on QP, non-text attachments and munpack
hansen@pegasus.att.com Fri, 09 February 1996 23:42 UTC
Received: from ietf.nri.reston.va.us by IETF.CNRI.Reston.VA.US id aa00373;
9 Feb 96 18:42 EST
Received: from CNRI.Reston.VA.US by IETF.CNRI.Reston.VA.US id aa00369;
9 Feb 96 18:42 EST
Received: from list.cren.net by CNRI.Reston.VA.US id aa16735;
9 Feb 96 18:42 EST
Received: from localhost (localhost [127.0.0.1]) by list.cren.net
(8.6.12/8.6.12) with SMTP id SAA11751; Fri, 9 Feb 1996 18:17:49 -0500
Received: from gw3.att.com (gw4.att.com [204.179.186.34]) by list.cren.net
(8.6.12/8.6.12) with SMTP id SAA11730 for <ietf-822@list.cren.net>;
Fri, 9 Feb 1996 18:16:30 -0500
Received: from pegasus.UUCP by ig4.att.att.com id AA21950;
Fri, 9 Feb 96 18:09:07 EST
Message-Id: <9602092309.AA21950@ig4.att.att.com>
Date: Fri, 9 Feb 1996 16:52 EST
X-Orig-Sender: owner-ietf-822@list.cren.net
Sender: ietf-archive-request@IETF.CNRI.Reston.VA.US
From: hansen@pegasus.att.com
To: Ned Freed <ietf-822@list.cren.net>,
Jamie Zawinski <jwz@netscape.com.attmail!internet!netscape.com!jwz>
Subject: Re: questions on QP, non-text attachments and munpack
Content-Type: text
X-Listprocessor-Version: 8.0(beta) -- ListProcessor by CREN
< From: jwz@netscape.com (Jamie Zawinski) < << o Is my mailer correct in believing that it should be able to use QP << for non-text attachments? After all, QP IS supposed to just be an << encoding. << << o Is munpack wrong in stripping CR's when dealing with non-text << attachments? < < I believe the answers are "no" and "yes". It's true that QP is "just" an < encoding, but it's an encoding for line-based data, which implies that the < data should be CRLF while on the wire, but may be converted to the local < newline convention when decoded. Base64 doesn't include this implication. < So for non-line-based data, you need to use Base64. Show me where in the RFC it says QP is strictly for line-based data. I can't find anything that implies that. ---------------- < From: NED@INNOSOFT.COM (Ned Freed) < ... < << o Is munpack wrong in stripping CR's when dealing with non-text << attachments? < < It depends on what CRs you are referring to. There are three sorts in QP: < < (1) Those that appear as =0D. These should only appear in the content of < types other than text -- the rules for text require that CR only be used a < part of a CRLF sequence and that such sequences be represented as a line < break in the encoded output. When they do appear in non-text material, < however, they must not be stripped. < < (2) Those that appear as part of a =<CR><LF> sequence. These "soft breaks" < should always be removed regardless of the type of content involved. < < (3) Those that appear as a <CR><LF> sequence that isn't preceeded by =. < These "hard breaks" are only supposed to be used in MIME text. They should < not appear in non-text material. When they appear in text material, < however, they must not be discarded. < < My guess is that the case you're referring to is (3), and you did say that < the material isn't textual in form. In this case there aren't supposed to < be any hard breaks present. And if there are MUNPACK could strip them if < it wanted to. It is neither "correct" or "incorrect" to do so. Unfortunately, I'm referring to (1). Here's a snippet of code from mpack's decode.c: fromqp(inpart, outfile, digestp) ... while ((c1 = part_getc(inpart)) != EOF) { if (c1 == '=') { c1 = part_getc(inpart); if (c1 != '\n') { c1 = HEXCHAR(c1); c2 = part_getc(inpart); c2 = HEXCHAR(c2); c = c1<<4 | c2; if (c != '\r') putc(c, outfile); if (digestp) MD5Update(&context, &c, 1); } Note that it decodes the =XX and then checks it for being a CR. The comparable line in the from64() routine has this instead: if (!suppressCR || buf[0] != '\r') putc(buf[0], outfile); so obviously it's passed a flag that indicates that it should not suppress CR's under certain circumstances, presumably for non-text body parts. >From your statements above, you believe that munpack is incorrect. What sayest the rest of the gang? Tony Hansen hansen@pegasus.att.com, tony@attmail.com http://ourworld.compuserve.com/homepages/Tony_Hansen
- questions on QP, non-text attachments and munpack hansen
- Re: questions on QP, non-text attachments and mun… Jamie Zawinski
- Re: questions on QP, non-text attachments and mun… Ned Freed
- Re: questions on QP, non-text attachments and mun… Jamie Zawinski
- Re: questions on QP, non-text attachments and mun… hansen
- Re: questions on QP, non-text attachments and mun… hansen
- Re: questions on QP, non-text attachments and mun… Ned Freed
- Re: questions on QP, non-text attachments and mun… John Gardiner Myers
- Re: questions on QP, non-text attachments and mun… John Gardiner Myers
- Re: questions on QP, non-text attachments and mun… hansen
- Re: questions on QP, non-text attachments and mun… hansen
- Re: questions on QP, non-text attachments and mun… Ned Freed
- Re: questions on QP, non-text attachments and mun… Keith Moore
- Re: questions on QP, non-text attachments and mun… Ned Freed