1998-10-05 04:23:19 +00:00
|
|
|
*** pine/send.c.orig Tue Sep 15 22:12:31 1998
|
|
|
|
--- pine/send.c Sun Sep 20 00:41:41 1998
|
1997-07-19 23:27:37 +00:00
|
|
|
***************
|
1998-10-05 04:23:19 +00:00
|
|
|
*** 6736,6748 ****
|
1997-07-19 23:27:37 +00:00
|
|
|
body->subtype = cpystr("octet-stream");
|
|
|
|
}
|
|
|
|
|
1998-07-18 05:49:22 +00:00
|
|
|
! /*
|
|
|
|
! * Apply maximal encoding regardless of previous
|
|
|
|
! * setting. This segment's either not text, or is
|
|
|
|
! * unlikely to be readable with > 30% of the
|
|
|
|
! * text encoded anyway, so we might as well save space...
|
|
|
|
! */
|
1997-07-19 23:27:37 +00:00
|
|
|
! new_encoding = ENCBINARY; /* > 30% 8 bit chars */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-10-05 04:23:19 +00:00
|
|
|
--- 6736,6752 ----
|
1997-07-19 23:27:37 +00:00
|
|
|
body->subtype = cpystr("octet-stream");
|
|
|
|
}
|
|
|
|
|
1998-07-18 05:49:22 +00:00
|
|
|
! if(body->type == TYPETEXT)
|
|
|
|
! /* Use ENC8BIT rather than ENCBINARY for TEXT */
|
|
|
|
! new_encoding = ENC8BIT;
|
|
|
|
! else
|
|
|
|
! /*
|
|
|
|
! * Apply maximal encoding regardless of previous
|
|
|
|
! * setting. This segment's either not text, or is
|
|
|
|
! * unlikely to be readable with > 30% of the
|
|
|
|
! * text encoded anyway, so we might as well save space...
|
|
|
|
! */
|
1997-07-19 23:27:37 +00:00
|
|
|
! new_encoding = ENCBINARY; /* > 30% 8 bit chars */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-02-04 19:12:52 +00:00
|
|
|
***************
|
1998-10-05 04:23:19 +00:00
|
|
|
*** 7573,7579 ****
|
1997-02-04 19:12:52 +00:00
|
|
|
|
|
|
|
switch (body->encoding) { /* all else needs filtering */
|
|
|
|
case ENC8BIT: /* encode 8BIT into QUOTED-PRINTABLE */
|
1998-07-18 05:49:22 +00:00
|
|
|
! gf_link_filter(gf_8bit_qp, NULL);
|
1997-02-04 19:12:52 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ENCBINARY: /* encode binary into BASE64 */
|
1998-10-05 04:23:19 +00:00
|
|
|
--- 7577,7584 ----
|
1997-02-04 19:12:52 +00:00
|
|
|
|
|
|
|
switch (body->encoding) { /* all else needs filtering */
|
|
|
|
case ENC8BIT: /* encode 8BIT into QUOTED-PRINTABLE */
|
1998-07-18 05:49:22 +00:00
|
|
|
! if(F_OFF(F_ENABLE_8BIT, ps_global)) /* unless 8BIT enabled */
|
|
|
|
! gf_link_filter(gf_8bit_qp, NULL);
|
1997-02-04 19:12:52 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ENCBINARY: /* encode binary into BASE64 */
|
|
|
|
***************
|
1998-10-05 04:23:19 +00:00
|
|
|
*** 7656,7662 ****
|
1998-08-13 06:49:34 +00:00
|
|
|
&& !(so_puts(so, "Content-Transfer-Encoding: ")
|
|
|
|
&& so_puts(so, body_encodings[(body->encoding==ENCBINARY)
|
|
|
|
? ENCBASE64
|
|
|
|
! : (body->encoding == ENC8BIT)
|
|
|
|
? ENCQUOTEDPRINTABLE
|
|
|
|
: (body->encoding <= ENCMAX)
|
|
|
|
? body->encoding
|
1998-10-05 04:23:19 +00:00
|
|
|
--- 7661,7667 ----
|
1998-08-13 06:49:34 +00:00
|
|
|
&& !(so_puts(so, "Content-Transfer-Encoding: ")
|
|
|
|
&& so_puts(so, body_encodings[(body->encoding==ENCBINARY)
|
|
|
|
? ENCBASE64
|
|
|
|
! : (body->encoding == ENC8BIT && F_OFF(F_ENABLE_8BIT, ps_global))
|
|
|
|
? ENCQUOTEDPRINTABLE
|
|
|
|
: (body->encoding <= ENCMAX)
|
|
|
|
? body->encoding
|