diff options
author | Doug Barton <dougb@FreeBSD.org> | 2001-10-05 08:41:39 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2001-10-05 08:41:39 +0000 |
commit | 0faf48ffbef41b6d610ff192ba4fb74f26688f3d (patch) | |
tree | 8d80f4a0b007889a13ecca9565ceb3aa83ae2bbf /mail/pine4/files/patch-ai | |
parent | o update to 0.4.1. (diff) |
* Update to version 4.40, the latest and greatest from our friends
at UW. Improvements include TLS and SSL support fully integrated
into the code base (requires OpenSSL), support for remote address
books, improved rules-based filtering, and new filter options.
* Bugs fixed include longer folder names, temp file cleanup,
mail sorted by filters more accurately, et al.
* Re-generate almost all of the patches to clean out more of the fuzz.
Notes
Notes:
svn path=/head/; revision=48464
Diffstat (limited to 'mail/pine4/files/patch-ai')
-rw-r--r-- | mail/pine4/files/patch-ai | 35 |
1 files changed, 27 insertions, 8 deletions
diff --git a/mail/pine4/files/patch-ai b/mail/pine4/files/patch-ai index 5c2604e36c55..791e4e242b76 100644 --- a/mail/pine4/files/patch-ai +++ b/mail/pine4/files/patch-ai @@ -1,7 +1,26 @@ -*** pine/send.c.orig Thu Feb 4 20:17:39 1999 ---- pine/send.c Tue Feb 9 21:34:37 1999 +*** pine/send.c.Dist Mon Aug 27 10:54:33 2001 +--- pine/send.c Fri Sep 28 00:19:47 2001 *************** -*** 7083,7095 **** +*** 47,54 **** + ====*/ + + #include "headers.h" +! #include "../c-client/smtp.h" +! #include "../c-client/nntp.h" + + + #ifndef TCPSTREAM +--- 47,54 ---- + ====*/ + + #include "headers.h" +! #include "c-client/smtp.h" +! #include "c-client/nntp.h" + + + #ifndef TCPSTREAM +*************** +*** 7689,7701 **** body->subtype = cpystr("octet-stream"); } @@ -15,7 +34,7 @@ } } ---- 7083,7099 ---- +--- 7689,7705 ---- body->subtype = cpystr("octet-stream"); } @@ -34,7 +53,7 @@ } *************** -*** 8034,8040 **** +*** 8659,8665 **** switch (body->encoding) { /* all else needs filtering */ case ENC8BIT: /* encode 8BIT into QUOTED-PRINTABLE */ @@ -42,7 +61,7 @@ break; case ENCBINARY: /* encode binary into BASE64 */ ---- 8038,8045 ---- +--- 8663,8670 ---- switch (body->encoding) { /* all else needs filtering */ case ENC8BIT: /* encode 8BIT into QUOTED-PRINTABLE */ @@ -52,7 +71,7 @@ case ENCBINARY: /* encode binary into BASE64 */ *************** -*** 8136,8142 **** +*** 8761,8767 **** && !(so_puts(so, "Content-Transfer-Encoding: ") && so_puts(so, body_encodings[(body->encoding==ENCBINARY) ? ENCBASE64 @@ -60,7 +79,7 @@ ? ENCQUOTEDPRINTABLE : (body->encoding <= ENCMAX) ? body->encoding ---- 8141,8147 ---- +--- 8766,8772 ---- && !(so_puts(so, "Content-Transfer-Encoding: ") && so_puts(so, body_encodings[(body->encoding==ENCBINARY) ? ENCBASE64 |