aboutsummaryrefslogtreecommitdiff
path: root/mail/mutt/files/extra-patch-forcebase64-nntp
diff options
context:
space:
mode:
authorNiclas Zeising <zeising@FreeBSD.org>2020-06-29 14:58:48 +0000
committerNiclas Zeising <zeising@FreeBSD.org>2020-06-29 14:58:48 +0000
commit2cbbd49ac627ee683bfeb3aa4834934b9871bfbd (patch)
tree3fa27a3162f7f6dbb4d60084e05096378577a7e9 /mail/mutt/files/extra-patch-forcebase64-nntp
parent155f180f89a3593a17c385b6071c9e592c984125 (diff)
downloadports-2cbbd49ac627ee683bfeb3aa4834934b9871bfbd.tar.gz
ports-2cbbd49ac627ee683bfeb3aa4834934b9871bfbd.zip
MFH: r530651 r534246 r535833 r536629 r538859 r540343
This updates mail/mutt to 1.14.5 This merges all changes to mail/mutt that have been done to FreeBSD ports head branch during the 2020Q2 period. This is needed in order to update mail/mutt to 1.14.5 in order to fix security issues. mail/mutt: upgrade 1.13.4 -> 1.13.5 - Bring back vvv quote/initials patches - Remove NNTP option (XML as well) - Update default option patches context PR: 245175 Submitted by: Derek Schrock <dereks@lifeofadishwasher.com> (maintainer) Relnotes: https://marc.info/?l=mutt-users&m=158542977114051&w=2 mail/mutt: update 1.13.5 -> 1.14.0 - Default DEBUG option (very small performance impact and ~4% binary size increase) PR: 246270 Submitted by: Derek Schrock <dereks@lifeofadishwasher.com> (maintainer) Relnotes: http://www.mutt.org/relnotes/1.14/ mail/mutt: update 1.14.0 -> 1.14.1 - Rename DEBUG option to DEBUG_LOGS - Add lang/perl5 deps that triggers a Muttrc rebuild - Make smime patch optional due to perl build deps. - Remove unnecessary doc patches and REINPLACE_CMD - Move build changing patches to make targets - ASPELL updates the (pre)built Muttrc to not require a rebuild PR: 246559 Submitted by: Derek Schrock <dereks@lifeofadishwasher.com> (maintainer) Relnotes: https://marc.info/?l=mutt-users&m=158965668315387&w=2 mail/mutt: Update to 1.14.2 ChangeLog: http://www.mutt.org/ PR: 246731 Submitted by: dereks@lifeofadishwasher.com (maintainer) mail/mutt: Update to 1.14.3 - Update to 1.14.3 - Muttrc removed from dist. making perl a BUILD_DEPENDS - manual.txt removed from dist. making lynx a DOCS_BUILD_DEPENDS - Remove MASTER_SITES not updated or can't connect PR: 247266 Submitted by: Derek Schrock <dereks@lifeofadishwasher.com> (maintainer) Relnotes: https://marc.info/?l=mutt-users&m=159217236324614&w=2 mail/mutt: Update to 1.14.5 Update mail/mutt to 1.14.5, this is a security fix release, with fixes for CVE-2020-14093 and CVE-2020-14954 PR: 247400 Submitted by: Derek Schrock Security: 5b397852-b1d0-11ea-a11c-4437e6ad11c4 29b13a34-b1d2-11ea-a11c-4437e6ad11c4 Approved by: ports-secteam (joenum)
Notes
Notes: svn path=/branches/2020Q2/; revision=540778
Diffstat (limited to 'mail/mutt/files/extra-patch-forcebase64-nntp')
-rw-r--r--mail/mutt/files/extra-patch-forcebase64-nntp37
1 files changed, 0 insertions, 37 deletions
diff --git a/mail/mutt/files/extra-patch-forcebase64-nntp b/mail/mutt/files/extra-patch-forcebase64-nntp
deleted file mode 100644
index b4b699d845cb..000000000000
--- a/mail/mutt/files/extra-patch-forcebase64-nntp
+++ /dev/null
@@ -1,37 +0,0 @@
---- init.h.orig 2017-09-10 22:12:31 UTC
-+++ init.h
-@@ -911,6 +911,11 @@ struct option_t MuttVars[] = {
- ** message via mail.
- */
- #endif
-+ { "force_base64", DT_BOOL, R_NONE, OPTFORCEBASE64, 0 },
-+ /*
-+ ** .pp
-+ ** If you need to encode all text parts to base64, set this option.
-+ */
- { "force_name", DT_BOOL, R_NONE, OPTFORCENAME, 0 },
- /*
- ** .pp
---- mutt.h.orig 2017-09-10 22:12:31 UTC
-+++ mutt.h
-@@ -379,6 +379,7 @@ enum
- OPTFCCCLEAR,
- OPTFLAGSAFE,
- OPTFOLLOWUPTO,
-+ OPTFORCEBASE64,
- OPTFORCENAME,
- OPTFORWDECODE,
- OPTFORWQUOTE,
---- sendlib.c.orig 2017-09-10 22:12:31 UTC
-+++ sendlib.c
-@@ -1180,7 +1180,9 @@ static void mutt_set_encoding (BODY *b,
- if (b->type == TYPETEXT)
- {
- char *chsname = mutt_get_body_charset (send_charset, sizeof (send_charset), b);
-- if ((info->lobin && ascii_strncasecmp (chsname, "iso-2022", 8)) || info->linemax > 990 || (info->from && option (OPTENCODEFROM)))
-+ if (option (OPTFORCEBASE64))
-+ b->encoding = ENCBASE64;
-+ else if ((info->lobin && ascii_strncasecmp (chsname, "iso-2022", 8)) || info->linemax > 990 || (info->from && option (OPTENCODEFROM)))
- b->encoding = ENCQUOTEDPRINTABLE;
- else if (info->hibin)
- b->encoding = option (OPTALLOW8BIT) ? ENC8BIT : ENCQUOTEDPRINTABLE;