diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2000-08-26 09:43:51 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-08-26 09:43:51 +0000 |
commit | 90c5078b1c1b78ca35f96267cbb10740541e968f (patch) | |
tree | f62b0202da3c8ef924d457ec4525098831ac269b /chinese/mutt | |
parent | 441c317dae78f1420ea217c04ee7454d34f3a49f (diff) | |
download | ports-90c5078b1c1b78ca35f96267cbb10740541e968f.tar.gz ports-90c5078b1c1b78ca35f96267cbb10740541e968f.zip |
Notes
Diffstat (limited to 'chinese/mutt')
-rw-r--r-- | chinese/mutt/files/patch-init.h | 20 | ||||
-rw-r--r-- | chinese/mutt/files/patch-pgp.c | 11 | ||||
-rw-r--r-- | chinese/mutt/files/patch-sendlib.c | 18 |
3 files changed, 49 insertions, 0 deletions
diff --git a/chinese/mutt/files/patch-init.h b/chinese/mutt/files/patch-init.h new file mode 100644 index 000000000000..65b5a687ae08 --- /dev/null +++ b/chinese/mutt/files/patch-init.h @@ -0,0 +1,20 @@ +--- init.h.orig Tue Jul 18 15:47:08 2000 ++++ init.h Mon Aug 14 02:50:40 2000 +@@ -261,7 +261,7 @@ + ** When this variable is set, mutt will include Delivered-To headers when + ** bouncing messages. Postfix users may wish to unset this variable. + */ +- { "charset", DT_STR, R_NONE, UL &Charset, UL "iso-8859-1" }, ++ { "charset", DT_STR, R_NONE, UL &Charset, UL "big5" }, + /* + ** .pp + ** Character set your terminal uses to display and enter textual data. +@@ -2043,7 +2043,7 @@ + ** recipient. The fifth character is used to indicate mail that was sent + ** by \fIyou\fP. + */ +- { "use_8bitmime", DT_BOOL, R_NONE, OPTUSE8BITMIME, 0 }, ++ { "use_8bitmime", DT_BOOL, R_NONE, OPTUSE8BITMIME, 1 }, + /* + ** .pp + ** \fBWarning:\fP do not set this variable unless you are using a version diff --git a/chinese/mutt/files/patch-pgp.c b/chinese/mutt/files/patch-pgp.c new file mode 100644 index 000000000000..a282bce7df19 --- /dev/null +++ b/chinese/mutt/files/patch-pgp.c @@ -0,0 +1,11 @@ +--- pgp.c.orig Sat Aug 12 11:03:44 2000 ++++ pgp.c Sat Aug 12 11:05:23 2000 +@@ -1019,7 +1019,7 @@ + mutt_message_to_7bit(a, NULL); + } + else if (a->encoding == ENC8BIT) +- a->encoding = ENCQUOTEDPRINTABLE; ++ { /* Do nothing */ } + else if (a->encoding == ENCBINARY) + a->encoding = ENCBASE64; + else if (a->content && a->encoding != ENCBASE64 && diff --git a/chinese/mutt/files/patch-sendlib.c b/chinese/mutt/files/patch-sendlib.c new file mode 100644 index 000000000000..e090696be5cb --- /dev/null +++ b/chinese/mutt/files/patch-sendlib.c @@ -0,0 +1,18 @@ +--- sendlib.c.orig Fri Aug 11 11:28:58 2000 ++++ sendlib.c Fri Aug 11 11:29:19 2000 +@@ -1825,13 +1825,14 @@ + rfc2047_encode_adrlist (env->from); + rfc2047_encode_adrlist (env->mail_followup_to); + rfc2047_encode_adrlist (env->reply_to); +- ++ /* + if (env->subject) + { + rfc2047_encode_string (buffer, sizeof (buffer) - 1, + (unsigned char *) env->subject); + mutt_str_replace (&env->subject, buffer); + } ++ */ + encode_headers (env->userhdrs); + } + |