diff options
author | Doug Barton <dougb@FreeBSD.org> | 2008-09-01 20:21:47 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2008-09-01 20:21:47 +0000 |
commit | 2508679812973a6b7cf6424947603556f5c2866a (patch) | |
tree | a9df30731570f8fcec9a221c33babe5713b354d4 /mail/pine4/files/patch-ai | |
parent | Removing editors/ooo-build: Has been broken for more than 6 months. (diff) |
Remove the port for Pine, and the slave port for Pico. UW has discontinued
development on the Pine branch, and is instead focusing its efforts on the
successor, Alpine. http://www.washington.edu/alpine/
Alpine has more features, much better localization, better organized
(and largely rewritten) code, is BSD licensed, and should be a drop-in
replacement in terms of configuration files.
Alpine version 1.00 was released on March 17, 2008 after over a year of
development and community testing, and has since had 2 releases for
bugfixes and new features, so it's safe to say that this is a mature
replacement.
Notes
Notes:
svn path=/head/; revision=219613
Diffstat (limited to 'mail/pine4/files/patch-ai')
-rw-r--r-- | mail/pine4/files/patch-ai | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/mail/pine4/files/patch-ai b/mail/pine4/files/patch-ai deleted file mode 100644 index 5687a2ae77a4..000000000000 --- a/mail/pine4/files/patch-ai +++ /dev/null @@ -1,70 +0,0 @@ -*** pine/send.c.orig Fri Aug 29 15:03:08 2003 ---- pine/send.c Fri Sep 5 01:44:20 2003 -*************** -*** 8251,8263 **** - body->subtype = cpystr("octet-stream"); - } - -! /* -! * 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... -! */ -! new_encoding = ENCBINARY; /* > 30% 8 bit chars */ - } - } - ---- 8251,8267 ---- - body->subtype = cpystr("octet-stream"); - } - -! 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... -! */ -! new_encoding = ENCBINARY; /* > 30% 8 bit chars */ - } - } - -*************** -*** 9278,9284 **** - - switch (body->encoding) { /* all else needs filtering */ - case ENC8BIT: /* encode 8BIT into QUOTED-PRINTABLE */ -! gf_link_filter(gf_8bit_qp, NULL); - break; - - case ENCBINARY: /* encode binary into BASE64 */ ---- 9282,9289 ---- - - switch (body->encoding) { /* all else needs filtering */ - case ENC8BIT: /* encode 8BIT into QUOTED-PRINTABLE */ -! if(F_OFF(F_ENABLE_8BIT, ps_global)) /* unless 8BIT enabled */ -! gf_link_filter(gf_8bit_qp, NULL); - break; - - case ENCBINARY: /* encode binary into BASE64 */ -*************** -*** 9392,9398 **** - && !(so_puts(so, "Content-Transfer-Encoding: ") - && so_puts(so, body_encodings[(body->encoding==ENCBINARY) - ? ENCBASE64 -! : (body->encoding == ENC8BIT) - ? ENCQUOTEDPRINTABLE - : (body->encoding <= ENCMAX) - ? body->encoding ---- 9397,9403 ---- - && !(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 |