diff --git a/SOURCES/mutt-1.5.23-system_certs.patch b/SOURCES/mutt-1.5.23-system_certs.patch new file mode 100644 index 0000000..41d7840 --- /dev/null +++ b/SOURCES/mutt-1.5.23-system_certs.patch @@ -0,0 +1,12 @@ +diff -rup mutt-17a4f92e4a95-orig/init.h mutt-17a4f92e4a95-new/init.h +--- mutt-17a4f92e4a95-orig/init.h 2015-06-07 22:59:32.000000000 +0200 ++++ mutt-17a4f92e4a95-new/init.h 2015-06-25 15:28:56.095570332 +0200 +@@ -2989,7 +2989,7 @@ struct option_t MuttVars[] = { + */ + #if defined(USE_SSL) + #ifdef USE_SSL_GNUTLS +- { "ssl_ca_certificates_file", DT_PATH, R_NONE, UL &SslCACertFile, 0 }, ++ { "ssl_ca_certificates_file", DT_PATH, R_NONE, UL &SslCACertFile, "/etc/ssl/certs/ca-bundle.crt" }, + /* + ** .pp + ** This variable specifies a file containing trusted CA certificates. diff --git a/SOURCES/mutt-1.7.0-syncdebug.patch b/SOURCES/mutt-1.7.0-syncdebug.patch new file mode 100644 index 0000000..4b757b1 --- /dev/null +++ b/SOURCES/mutt-1.7.0-syncdebug.patch @@ -0,0 +1,12 @@ +diff -ur mutt-1.7.0-orig/imap/imap.c mutt-1.7.0/imap/imap.c +--- mutt-1.7.0-orig/imap/imap.c 2016-08-20 11:06:26.266272415 +0100 ++++ mutt-1.7.0/imap/imap.c 2016-08-20 11:07:42.874509429 +0100 +@@ -1143,7 +1143,7 @@ + if (!idata->ctx) + return -1; + +- if (!mutt_bit_isset (idata->ctx->rights, right)) ++ if (!idata->ctx || !mutt_bit_isset (idata->ctx->rights, right)) + return 0; + + if (right == MUTT_ACL_WRITE && !imap_has_flag (idata->flags, name)) diff --git a/SOURCES/mutt-1.8.0-cabundle.patch b/SOURCES/mutt-1.8.0-cabundle.patch new file mode 100644 index 0000000..3752474 --- /dev/null +++ b/SOURCES/mutt-1.8.0-cabundle.patch @@ -0,0 +1,28 @@ +diff -ur mutt-1.8.0.orig/contrib/Makefile.am mutt-1.8.0/contrib/Makefile.am +--- mutt-1.8.0.orig/contrib/Makefile.am 2017-02-25 15:28:22.124997366 +0000 ++++ mutt-1.8.0/contrib/Makefile.am 2017-02-25 15:48:10.834036861 +0000 +@@ -5,7 +5,7 @@ + SAMPLES = Mush.rc Pine.rc gpg.rc pgp2.rc pgp5.rc pgp6.rc Tin.rc \ + sample.mailcap sample.muttrc sample.muttrc-sidebar sample.muttrc-tlr \ + sample.muttrc-compress sample.vimrc-sidebar colors.default colors.linux smime.rc \ +- ca-bundle.crt smime_keys_test.pl mutt_xtitle ++ smime_keys_test.pl mutt_xtitle + + EXTRA_DIST = language.txt language50.txt \ + patch.slang-1.2.2.keypad.1 \ +diff -ur mutt-1.8.0.orig/doc/smime-notes.txt mutt-1.8.0/doc/smime-notes.txt +--- mutt-1.8.0.orig/doc/smime-notes.txt 2017-02-25 15:28:22.119997501 +0000 ++++ mutt-1.8.0/doc/smime-notes.txt 2017-02-25 16:06:38.986242390 +0000 +@@ -40,8 +40,10 @@ + - Edit the smime_sign_as line in your muttrc, replacing the keyid with your + own. + +-- You probably want to import the trusted roots in +- contrib/ca-bundle.crt. This makes you trust anything that was ultimately ++- There is no more ca-bundle.crt file with the trusted roots to import shipped ++ in mutt. The upstream file is out-dated and user is encouraged to use ++ ca-bundle.crt from ca-certificate package. ++ This makes you trust anything that was ultimately + signed by one of them. You can use "smime_keys add_root" to do so, or + just copy ca-bundle.crt into the place you point mutt's smime_ca_location + variable to. diff --git a/SOURCES/mutt-1.8.0-muttrc.patch b/SOURCES/mutt-1.8.0-muttrc.patch new file mode 100644 index 0000000..6933b4c --- /dev/null +++ b/SOURCES/mutt-1.8.0-muttrc.patch @@ -0,0 +1,19 @@ +diff -ur mutt-1.8.0.orig/doc/Muttrc.head mutt-1.8.0/doc/Muttrc.head +--- mutt-1.8.0.orig/doc/Muttrc.head 2017-02-25 15:28:22.120997474 +0000 ++++ mutt-1.8.0/doc/Muttrc.head 2017-02-25 15:30:10.643079681 +0000 +@@ -24,11 +24,15 @@ + + # Show documentation when pressing F1 + macro generic,pager " less @docdir@/manual.txt" "show Mutt documentation" ++# and also F2, as some terminals use F1 ++macro generic,pager " less @docdir@/manual.txt" "show Mutt documentation" + + # show the incoming mailboxes list (just like "mutt -y") and back when pressing "y" + macro index,pager y "?" "show incoming mailboxes list" + bind browser y exit + ++bind editor delete-char ++ + # Handler for gzip compressed mailboxes + # open-hook '\.gz$' "gzip -cd '%f' > '%t'" + # close-hook '\.gz$' "gzip -c '%t' > '%f'" diff --git a/SOURCES/mutt-1.9.0-ssl_ciphers.patch b/SOURCES/mutt-1.9.0-ssl_ciphers.patch new file mode 100644 index 0000000..1440189 --- /dev/null +++ b/SOURCES/mutt-1.9.0-ssl_ciphers.patch @@ -0,0 +1,32 @@ +diff -ur mutt-1.9.0.orig/init.h mutt-1.9.0/init.h +--- mutt-1.9.0.orig/init.h 2017-09-04 16:48:21.409528002 +0200 ++++ mutt-1.9.0/init.h 2017-09-04 16:49:26.505093636 +0200 +@@ -3510,7 +3510,7 @@ + */ + # endif /* defined HAVE_SSL_PARTIAL_CHAIN */ + # endif /* defined USE_SSL_OPENSSL */ +- { "ssl_ciphers", DT_STR, R_NONE, UL &SslCiphers, UL 0 }, ++ { "ssl_ciphers", DT_STR, R_NONE, UL &SslCiphers, UL "@SYSTEM" }, + /* + ** .pp + ** Contains a colon-seperated list of ciphers to use when using SSL. +diff -ur mutt-1.9.0.orig/mutt_ssl_gnutls.c mutt-1.9.0/mutt_ssl_gnutls.c +--- mutt-1.9.0.orig/mutt_ssl_gnutls.c 2017-09-04 16:48:21.403528134 +0200 ++++ mutt-1.9.0/mutt_ssl_gnutls.c 2017-09-04 16:51:16.081679141 +0200 +@@ -286,6 +286,8 @@ + else + safe_strcat (priority, priority_size, "NORMAL"); + ++if (SslCiphers && strcmp(SslCiphers, "@SYSTEM")) ++{ + if (! option(OPTTLSV1_2)) + { + nproto--; +@@ -313,6 +315,7 @@ + FREE (&priority); + return -1; + } ++} + + if ((err = gnutls_priority_set_direct (data->state, priority, NULL)) < 0) + { diff --git a/SOURCES/mutt_ldap_query b/SOURCES/mutt_ldap_query new file mode 100644 index 0000000..6679d27 --- /dev/null +++ b/SOURCES/mutt_ldap_query @@ -0,0 +1,42 @@ +#!/bin/sh +# +# Last modified: 30 October 2000 +# + +FLAGS= + +# Create two temporary files. +umask 077 +TMPFILE=`mktemp /tmp/mutt.ldap.XXXXXX` +RESULTS=`mktemp /tmp/mutt.ldap.XXXXXX` + +if [ -n "$LDAPSERVER" ]; then + FLAGS="$FLAGS -h $LDAPSERVER" +fi +if [ -n "$LDAPBASEDN" ]; then + FLAGS="$FLAGS -b $LDAPBASEDN" +fi + +# Search. +ldapsearch $FLAGS '(&(objectclass=inetorgperson)(|(cn='"$1"'*)(givenname='"$1"'*)(surname='"$1"'*)(mail='"$1"'*)))' mail cn roomNumber 2> /dev/null >> $TMPFILE +ldapsearch -x $FLAGS '(&(objectclass=inetorgperson)(|(cn='"$1"'*)(givenname='"$1"'*)(surname='"$1"'*)(mail='"$1"'*)))' mail cn roomNumber 2> /dev/null >> $TMPFILE + +# Parse. +cat $TMPFILE | awk ' + /^mail:/ {MAIL=substr($0,6)} + /^cn:/ {NAME=substr($0,4)} + /^roomNumber:/ {ROOM=substr($0,12)} + /^$/ { MAIL=gensub("^ *| *$","","g",MAIL) } + /^$/ { NAME=gensub("^ *| *$","","g",NAME) } + /^$/ { ROOM=gensub("^ *| *$","","g",ROOM) } + /^$/ { if(length(NAME) > 0) print MAIL "\t" NAME "\t" ROOM} + /^$/ { NAME = "" } +' > $RESULTS + +# Sort and present results. +sort -u $RESULTS > $TMPFILE +echo Querying ${LDAPSERVER}.... `cat $TMPFILE | wc -l` entries found. +cat $TMPFILE + +# Clean up. +rm -f $TMPFILE $RESULTS diff --git a/SPECS/mutt.spec b/SPECS/mutt.spec new file mode 100644 index 0000000..6b9618a --- /dev/null +++ b/SPECS/mutt.spec @@ -0,0 +1,832 @@ +%bcond_without debug +%bcond_without imap +%bcond_without pop +%bcond_without smtp +%bcond_without gnutls +%bcond_without gss +%bcond_without sasl +%bcond_without idn +%bcond_without hcache +%bcond_without tokyocabinet +%bcond_with bdb +%bcond_with qdbm +%bcond_with gdbm +%bcond_without gpgme +%bcond_without sidebar + +%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} + +Summary: A text mode mail user agent +Name: mutt +Version: 1.9.2 +Release: 1%{?dist} +Epoch: 5 +# The entire source code is GPLv2+ except +# pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain +License: GPLv2+ and Public Domain +Group: Applications/Internet +# hg snapshot created from http://dev.mutt.org/hg/mutt +Source: ftp://ftp.mutt.org/pub/%{name}/%{name}-%{version}.tar.gz +Source1: mutt_ldap_query +Patch1: mutt-1.8.0-muttrc.patch +Patch2: mutt-1.8.0-cabundle.patch +# https://dev.mutt.org/trac/ticket/3569 +Patch3: mutt-1.7.0-syncdebug.patch +# FIXME make it to upstream +Patch8: mutt-1.5.23-system_certs.patch +Patch9: mutt-1.9.0-ssl_ciphers.patch +Url: http://www.mutt.org +Requires: mailcap, urlview +BuildRequires: ncurses-devel, gettext, automake +# manual generation +BuildRequires: /usr/bin/xsltproc, docbook-style-xsl +#BuildRequires: perl-generators, perl-interpreter +# html manual -> txt manual conversion (lynx messes up the encoding) +BuildRequires: w3m + +%if %{with hcache} +#%{?with_tokyocabinet:BuildRequires: tokyocabinet-devel} +%{?with_bdb:BuildRequires: db4-devel} +%{?with_qdbm:BuildRequires: qdbm-devel} +%{?with_gdbm:BuildRequires: gdbm-devel} +%endif + +%if %{with imap} || %{with pop} || %{with smtp} +%{?with_gnutls:BuildRequires: gnutls-devel} +%{?with_sasl:BuildRequires: cyrus-sasl-devel} +%endif + +%if %{with imap} +%{?with_gss:BuildRequires: krb5-devel} +%endif + +%{?with_idn:BuildRequires: libidn-devel} +%{?with_gpgme:BuildRequires: gpgme-devel} + + +%description +Mutt is a small but very powerful text-based MIME mail client. Mutt +is highly configurable, and is well suited to the mail power user with +advanced features like key bindings, keyboard macros, mail threading, +regular expression searches and a powerful pattern matching language +for selecting groups of messages. + + +%prep +# unpack; cd +%setup -q +# disable mutt_dotlock program - disable post-install mutt_dotlock checking +sed -i -r 's|install-exec-hook|my-useless-label|' Makefile.am +# do not run ./prepare -V, because it also runs ./configure +autoreconf --install +%patch1 -p1 -b .muttrc +%patch2 -p1 -b .cabundle +%patch3 -p1 -b .syncdebug +%patch8 -p1 -b .system_certs +%patch9 -p1 -b .ssl_ciphers + +sed -i -r 's/`$GPGME_CONFIG --libs`/"\0 -lgpg-error"/' configure +# disable mutt_dotlock program - remove support from mutt binary +sed -i -r 's|^(.*USE_DOTLOCK.*)$|//\1|' configure + +install -p -m644 %{SOURCE1} mutt_ldap_query + +%global hgreldate \\.(201[0-9])([0-1][0-9])([0-3][0-9])hg +if echo %{release} | grep -E -q '%{hgreldate}'; then + echo -n 'const char *ReleaseDate = ' > reldate.h + echo %{release} | sed -r 's/.*%{hgreldate}.*/"\1-\2-\3";/' >> reldate.h +fi + +# remove mutt_ssl.c to be sure it won't be used because it violates +# Packaging:CryptoPolicies +# https://fedoraproject.org/wiki/Packaging:CryptoPolicies +rm -f mutt_ssl.c + + +%build +%configure \ + SENDMAIL=%{_sbindir}/sendmail \ + ISPELL=%{_bindir}/hunspell \ + %{?with_debug: --enable-debug}\ + %{?with_pop: --enable-pop}\ + %{?with_imap: --enable-imap} \ + %{?with_smtp: --enable-smtp} \ +\ + %if %{with hcache} + --enable-hcache \ + %{!?with_tokyocabinet: --without-tokyocabinet} \ + %{!?with_gdbm: --without-gdbm} \ + %{!?with_qdbm: --without-qdbm} \ + %endif +\ + %if %{with imap} || %{with pop} || %{with smtp} + %{?with_gnutls: --with-gnutls} \ + %{?with_sasl: --with-sasl} \ + %endif +\ + %if %{with imap} + %{?with_gss: --with-gss} \ + %endif +\ + %{!?with_idn: --without-idn} \ + %{?with_gpgme: --enable-gpgme} \ + %{?with_sidebar: --enable-sidebar} \ + --with-docdir=%{_pkgdocdir} + +make %{?_smp_mflags} + +# remove unique id in manual.html because multilib conflicts +sed -i -r 's///g' doc/manual.html + + +%install +make install DESTDIR=%{buildroot} + +# we like GPG here +cat contrib/gpg.rc >> \ + %{buildroot}%{_sysconfdir}/Muttrc + +grep -5 "^color" contrib/sample.muttrc >> \ + %{buildroot}%{_sysconfdir}/Muttrc + +cat >> %{buildroot}%{_sysconfdir}/Muttrc <<\EOF +source %{_sysconfdir}/Muttrc.local +EOF + +echo "# Local configuration for Mutt." > \ + %{buildroot}%{_sysconfdir}/Muttrc.local + +# remove unpackaged files from the buildroot +rm -f %{buildroot}%{_sysconfdir}/*.dist +rm -f %{buildroot}%{_sysconfdir}/mime.types +# disable mutt_dotlock program - remove the compiled binary +rm -f %{buildroot}%{_bindir}/mutt_dotlock +rm -f %{buildroot}%{_bindir}/muttbug +rm -f %{buildroot}%{_bindir}/flea +rm -f %{buildroot}%{_mandir}/man1/mutt_dotlock.1* +rm -f %{buildroot}%{_mandir}/man1/muttbug.1* +rm -f %{buildroot}%{_mandir}/man1/flea.1* +rm -f %{buildroot}%{_mandir}/man5/mbox.5* +rm -f %{buildroot}%{_mandir}/man5/mmdf.5* +rm -rf %{buildroot}%{_pkgdocdir} + +# provide muttrc.local(5): the same as muttrc(5) +ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5 + +%find_lang %{name} + + +%files -f %{name}.lang +%{!?_licensedir:%global license %doc} +%license COPYRIGHT GPL +%doc ChangeLog NEWS README* UPDATING mutt_ldap_query +%doc contrib/*.rc contrib/sample.* contrib/colors.* +%doc doc/manual.html doc/manual.txt doc/smime-notes.txt +%config(noreplace) %{_sysconfdir}/Muttrc +%config(noreplace) %{_sysconfdir}/Muttrc.local +%{_bindir}/mutt +%{_bindir}/pgpring +%{_bindir}/pgpewrap +%{_bindir}/smime_keys +%{_mandir}/man1/mutt.* +%{_mandir}/man1/smime_keys.* +%{_mandir}/man1/pgpring.* +%{_mandir}/man1/pgpewrap.* +%{_mandir}/man5/muttrc.* + + +%changelog +* Wed Dec 20 2017 Matej Mužila - 5:1.9.2-1 +- Upgrade to 1.9.2 + +* Sun Sep 24 2017 Fabio Alessandro Locati - 5:1.9.1-1 +- Upgrade to 1.9.1 + +* Mon Sep 04 2017 Fabio Alessandro Locati - 5:1.9.0-1 +- Upgrade to 1.9.0 +- Rebase mutt-1.5.23-ssl_ciphers.patch to mutt-1.9.0-ssl_ciphers.patch + +* Thu Aug 03 2017 Fedora Release Engineering - 5:1.8.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 5:1.8.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Jun 21 2017 Fabio Alessandro Locati - 5:1.8.3-1 +- Upgrade to 1.8.3 + +* Mon Apr 24 2017 Matej Mužila - 5:1.8.2-1 +- Update to 1.8.2 + +* Sat Feb 25 2017 Fabio Alessandro Locati - 5:1.8.0-1 +- Upgrade to 1.8.0 +- Rebase muttrc patch +- Rebase cabundle patch + +* Fri Feb 10 2017 Fedora Release Engineering - 5:1.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Dec 10 2016 Igor Gnatenko - 5:1.7.2-2 +- Rebuild for gpgme 1.18 + +* Mon Dec 05 2016 Fabio Alessandro Locati - 5:1.7.2-1 +- Upgrade to 1.7.2 + +* Sun Oct 09 2016 Fabio Alessandro Locati - 5:1.7.1-1 +- Upgrade to 1.7.1 +- Rebase cabundle patch + +* Sat Aug 20 2016 Fabio Alessandro Locati - 5:1.7.0-1 +- Upgrade to 1.7.0 + +* Thu Jul 07 2016 Jon Ciesla - 5:1.6.2-1 +- Upgrade to 1.6.2 + +* Mon May 02 2016 Fabio Alessandro Locati - 5:1.6.1-1 +- Upgrade to 1.6.1 + +* Mon Apr 18 2016 Fabio Alessandro Locati - 5:1.6.0-1 +- Upgrade to 1.6.0 +- Drop patch domainname since it should not be needed any more + +* Thu Feb 04 2016 Fedora Release Engineering - 5:1.5.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Sep 04 2015 Matej Muzila - 5:1.5.24-1 +- Updated to 1.5.24 (Resolves: rhbz#1259332) +- Utilize system-wide crypto-policies (Resolves: rhbz#1179324) + +* Thu Jun 25 2015 Matej Muzila - 5:1.5.23-9 +- Make system CA bundle default in mutt +- Resolves: #1069778 + +* Tue Jun 02 2015 Matej Muzila - 5:1.5.23-8 +- Resolves #1227288 +- Do not send "From" header without the host part (eg. ) + +* Wed Dec 03 2014 Matej Muzila - 5:1.5.23-7 +- added patch file forgotten in last commit + +* Wed Dec 03 2014 Matej Muzila - 5:1.5.23-6 +- resolves #1168464 (CVE-2014-9116) + +* Sun Aug 17 2014 Fedora Release Engineering - 5:1.5.23-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 5:1.5.23-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon May 26 2014 Jan Pacner - 5:1.5.23-3 +- Resolves: #1096756 ([RFE] compile with --enable-debug by default) + +* Thu May 15 2014 Dan Horák - 5:1.5.23-2 +- update Makefile.am before running autoreconf + +* Tue Apr 29 2014 Jan Pacner - 5:1.5.23-1 +- Resolves: #1034263 (new version due to CVE) +- patch cleanup (upstream fixes) +- add html documentation (in addition to the current txt one) + +* Mon Dec 02 2013 Jan Pacner - 5:1.5.22-1 +- new release (Resolves: #1034263) +- use inline sed instead of nodotlock patch +- patches removed: testcert, hdrcnt, certscomp, updating, pophash, + notation, writehead, tmpdir, verpeers, tlsv1v2 +- manhelp patch adjusted (only DEBUG logging capability was left) + +* Mon Oct 21 2013 Honza Horak - 5:1.5.21-26 +- Fixed patch for certificates comparison + +* Mon Sep 23 2013 Miroslav Lichvar - 5:1.5.21-25 +- Revert to packaging only selected doc files + +* Thu Aug 8 2013 Ville Skyttä - 5:1.5.21-24 +- Fix FTBFS with unversioned %%{_docdir_fmt} (#992311), drop duplicate docs. + +* Sat Aug 03 2013 Fedora Release Engineering - 5:1.5.21-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Jul 18 2013 Petr Pisar - 5:1.5.21-22 +- Perl 5.18 rebuild + +* Thu Jun 27 2013 Honza Horak - 5:1.5.21-21 +- Backported support for TLS 1.2 and TLS 1.2 protocols + Resolves: #957840 + +* Wed May 29 2013 Honza Horak - 5:1.5.21-20 +- Fix patch for #750929 + Resolves: #957542 + +* Mon May 20 2013 Honza Horak - 5:1.5.21-19 +- Fix missing options in doc and pgpring, pgpewrap man page + +* Mon Mar 4 2013 Honza Horak - 5:1.5.21-18 +- gnutls_certificate_verify_peers became deprecated, using + a recent alternative + +* Thu Feb 14 2013 Fedora Release Engineering - 5:1.5.21-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Dec 03 2012 Honza Horak - 5:1.5.21-16 +- remove unique id in manual.html because multilib conflict +- provide muttrc.local(5) + +* Thu Sep 27 2012 Honza Horak - 5:1.5.21-15 +- Change default tmpdir from /tmp to /var/tmp + Resolves: #858264 + +* Mon Sep 10 2012 Honza Horak - 5:1.5.21-14 +- Minor spec file changes + +* Fri Jul 27 2012 Fedora Release Engineering - 5:1.5.21-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Thu May 10 2012 Honza Horak - 5:1.5.21-12 +- Fix segmentation fault while syncing mailbox + (rhbz#691719) +- Fix unhandled strchr output + (rhbz#833044) + +* Wed Apr 25 2012 Honza Horak - 5:1.5.21-11 +- Patch from Petr Pisar fixing verification of PGP signatures + with NULL notation + (rhbz#816044) + +* Fri Jan 13 2012 Fedora Release Engineering - 5:1.5.21-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Dec 07 2011 Honza Horak - 5:1.5.21-9 +- Fixed a segmentation fault while parsing the certificates file + (rhbz#750929) + +* Wed Nov 02 2011 Honza Horak - 5:1.5.21-8 +- Removed ca-bundle.crt since it is outdated (rhbz#734379) +- Build with gpgme support by default (rhbz#748337) +- Fixed segmentation fault during messages removal in thread mode + (rhbz#674271) + +* Wed Oct 26 2011 Fedora Release Engineering - 5:1.5.21-7 +- Rebuilt for glibc bug#747377 + +* Wed Jun 29 2011 Honza Horak - 5:1.5.21-6 +- Fixed message indexes when skipping fetch response (mutt bug #3288) + +* Fri Apr 15 2011 Honza Horak - 5:1.5.21-5 +- Fixed hostname verification of x.509 certificates. + (rhbz#688756, CVE-2011-1429) + +* Tue Mar 29 2011 Honza Horak - 5:1.5.21-4 +- Fixed segmentation faults during reading message headers (rhbz#676074) + +* Tue Feb 08 2011 Fedora Release Engineering - 5:1.5.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Sep 29 2010 jkeating - 5:1.5.21-2 +- Rebuilt for gcc bug 634757 + +* Tue Sep 21 2010 Miroslav Lichvar 5:1.5.21-1 +- update to 1.5.21 +- link with gpg-error when building with gpgme support (#621626) + +* Fri Jul 30 2010 Miroslav Lichvar 5:1.5.20-3.20100718hg1a35f0 +- update to hg snapshot 20100718hg1a35f0 + +* Thu Dec 17 2009 Deji Akingunola - 5:1.5.20-2.20091214hg736b6a.1 +- Rebuild for tokyocabinet new release soname bump + +* Wed Dec 16 2009 Miroslav Lichvar 5:1.5.20-2.20091214hg736b6a +- update to hg snapshot 20091214hg736b6a + +* Fri Sep 18 2009 Miroslav Lichvar 5:1.5.20-1.20090827hg605559 +- update to post 1.5.20 hg snapshot (#515148) +- use hunspell by default (#510358) + +* Sat Jul 25 2009 Fedora Release Engineering - 5:1.5.19-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Tue Jun 09 2009 Miroslav Lichvar 5:1.5.19-5 +- fix certificate verification (CVE-2009-1390) +- add support for gnutls INSECURE_ALGORITHM error code (#499390) + +* Wed Apr 01 2009 Miroslav Lichvar 5:1.5.19-4 +- use PATH_MAX for buffers passed to realpath (#492861) +- unconditionally inode-sort Maildir and MH folders +- restore connection polling callback when closing SASL connection + +* Wed Feb 25 2009 Fedora Release Engineering - 5:1.5.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Wed Jan 14 2009 Alex Lancaster - 5:1.5.19-2 +- Rebuild for deps + +* Wed Jan 07 2009 Miroslav Lichvar 5:1.5.19-1 +- update to 1.5.19 +- switch hcache backend to tokyocabinet +- drop intr patch + +* Mon Jul 28 2008 Miroslav Lichvar 5:1.5.18-4 +- rebuild with db4.7 (Robert Scheck) (#455144) + +* Wed Jun 25 2008 Miroslav Lichvar 5:1.5.18-3 +- buildrequire aspell (#452133) +- rebuild with new gnutls + +* Mon Jun 02 2008 Miroslav Lichvar 5:1.5.18-2 +- allow interrupts when reading, writing or closing sockets (#447887) +- fix possible crash when opening IMAP mailbox + +* Mon May 19 2008 Miroslav Lichvar 5:1.5.18-1 +- update to 1.5.18 + +* Fri Apr 04 2008 Miroslav Lichvar 5:1.5.17-4 +- fix sending long commands when using gnutls (#438275) +- glob tilde in smime_keys (#424311) +- fix awk script in mutt_ldap_query +- force building with libdb +- make enabling/disabling features in spec easier + +* Tue Feb 19 2008 Fedora Release Engineering - 5:1.5.17-3 +- Autorebuild for GCC 4.3 + +* Fri Nov 23 2007 Miroslav Lichvar 5:1.5.17-2 +- don't ignore $from in batch send mode (#392861) +- check Maildir for not being NULL when expanding '='-paths +- prevent mailto parsing buffer overflow by ignoring too long header +- use strtok_r() to parse mailto: links, not strtok() +- update UPDATING + +* Fri Nov 02 2007 Miroslav Lichvar 5:1.5.17-1 +- update to 1.5.17 + +* Mon Sep 17 2007 Miroslav Lichvar 5:1.5.16-4 +- fix md5 on big-endian systems + +* Tue Aug 28 2007 Miroslav Lichvar 5:1.5.16-3 +- replace md5 implementation +- update license tag + +* Wed Jul 11 2007 Miroslav Lichvar 5:1.5.16-2 +- split urlview off, fix requires and description (#226167) + +* Mon Jun 11 2007 Miroslav Lichvar 5:1.5.16-1 +- update to 1.5.16 + +* Mon May 28 2007 Miroslav Lichvar 5:1.5.14-4 +- validate msgid in APOP authentication (CVE-2007-1558) +- fix overflow in gecos field handling (CVE-2007-2683) + +* Mon Mar 19 2007 Miroslav Lichvar 5:1.5.14-3 +- fix building + +* Mon Mar 19 2007 Miroslav Lichvar 5:1.5.14-2 +- add check_mbox_size configuration variable; if enabled, file size is used + instead of access time when checking for new mail +- bind delete key to delete-char (#232601) + +* Fri Feb 23 2007 Miroslav Lichvar 5:1.5.14-1 +- update to 1.5.14 + +* Thu Feb 15 2007 Miroslav Lichvar 5:1.5.13-2.20070212cvs +- update to latest CVS +- enable libidn support (#228158) + +* Wed Feb 07 2007 Miroslav Lichvar 5:1.5.13-1.20070126cvs +- update to 1.5.13, and latest CVS (#168183, #220816) +- spec cleanup + +* Wed Dec 06 2006 Miroslav Lichvar 5:1.4.2.2-5 +- use correct fcc folder with IMAP (#217469) +- don't require smtpdaemon, gettext + +* Tue Oct 31 2006 Miroslav Lichvar 5:1.4.2.2-4 +- fix POP authentication with latest cyrus-sasl (#212816) + +* Tue Oct 24 2006 Miroslav Lichvar 5:1.4.2.2-3 +- fix insecure temp file creation on NFS (#211085, CVE-2006-5297) + +* Thu Aug 03 2006 Miroslav Lichvar 5:1.4.2.2-2 +- fix a SASL authentication bug (#199591) + +* Mon Jul 17 2006 Miroslav Lichvar 5:1.4.2.2-1 +- update to 1.4.2.2 +- fix directories in manual.txt (#162207) +- drop bcc patch (#197408) +- don't package flea + +* Wed Jul 12 2006 Jesse Keating - 5:1.4.2.1-7.1 +- rebuild + +* Thu Jun 29 2006 Miroslav Lichvar 5:1.4.2.1-7 +- fix a buffer overflow when processing IMAP namespace (#197152, CVE-2006-3242) + +* Fri Feb 10 2006 Jesse Keating - 5:1.4.2.1-6.2.1 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 5:1.4.2.1-6.2 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Wed Nov 9 2005 Bill Nottingham 5:1.4.2.1-6 +- rebuild against new ssl libs + +* Thu Oct 27 2005 Bill Nottingham 5:1.4.2.1-5 +- add patch from 1.5 branch to fix SASL logging (#157251, #171528) + +* Fri Aug 26 2005 Bill Nottingham 5:1.4.2.1-3 +- add patch from 1.5 branch to fix base64 decoding (#166718) + +* Mon Mar 7 2005 Bill Nottingham 5:1.4.2.1-2 +- rebuild against new openssl +- fix build with gcc4 + +* Thu Jan 27 2005 Bill Nottingham 5:1.4.2.1-1 +- update to 1.4.2.1 (#141007, ) +- include a /etc/Muttrc.local for site config (#123109) +- add as a additional help key for terminals that use internally + (#139277) + +* Wed Sep 15 2004 Nalin Dahyabhai 5:1.4.1-10 +- expect the server to prompt for additional auth data if we have some to + send (#129961, upstream #1845) +- use "pop" as the service name instead of "pop-3" when using SASL for POP, + per rfc1734 + +* Fri Aug 13 2004 Bill Nottingham 5:1.4.1-9 +- set write_bcc to no by default (since we ship exim) +- build against sasl2 (#126724) + +* Mon Jun 28 2004 Bill Nottingham +- remove autosplat patch (#116769) + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Tue Jun 8 2004 Bill Nottingham 5:1.4.1-7 +- link urlview against ncursesw (fixes #125530, indirectly) + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Tue Jan 27 2004 Bill Nottingham 5:1.4.1-5 +- add patch to fix menu padding (CAN-2004-0078, #109317) + +* Mon Aug 18 2003 Bill Nottingham 5:1.4.1-4 +- rebuild against ncursesw + +* Tue Jul 22 2003 Nalin Dahyabhai 5:1.4.1-3.2 +- rebuild + +* Mon Jul 7 2003 Bill Nottingham 5:1.4.1-3 +- fix auth to windows KDCs (#98662) + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Wed Mar 19 2003 Bill Nottingham 5:1.4.1-1 +- update to 1.4.1, fixes buffer overflow in IMAP code + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Mon Jan 20 2003 Bill Nottingham 5:1.4-9 +- add mailcap requires +- change urlview to htmlview as default browser + +* Fri Jan 17 2003 Florian La Roche +- change urlview to mozilla as default browser + +* Tue Jan 7 2003 Nalin Dahyabhai 5:1.4-7 +- rebuild + +* Mon Dec 2 2002 Bill Nottingham 5:1.4-6 +- ship flea + +* Fri Nov 29 2002 Tim Powers 5:1.4-5 +- remove unpackaged files from the buildroot + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Fri Jun 14 2002 Bill Nottingham 1.4-3 +- rebuild against new slang + +* Wed May 29 2002 Nalin Dahyabhai 1.4-2 +- forcibly enable SSL and GSSAPI support + +* Wed May 29 2002 Bill Nottingham 1.4-1 +- whoa, 1.4. + +* Sun May 26 2002 Tim Powers +- automated rebuild + +* Thu May 16 2002 Bill Nottingham +- autoconf fun + +* Wed Jan 09 2002 Tim Powers +- automated rebuild + +* Tue Jan 1 2002 Bill Nottingham +- update to 1.2.5.1 + +* Mon Jul 23 2001 Bill Nottingham +- don't explictly require krb5-libs, etc.; that's what find-requires is for + (#49780, sort of) + +* Sat Jul 21 2001 Tim Powers +- no more applnk entries, it's cluttering our menus + +* Fri Jul 20 2001 Bill Nottingham +- add slang-devel to buildprereqs (#49531) + +* Mon Jun 11 2001 Bill Nottingham +- add some sample color definitions (#19471) + +* Thu May 24 2001 Bill Nottingham +- fix typo in muttrc.man (#41610) + +* Mon May 14 2001 Bill Nottingham +- use mktemp in muttbug + +* Wed May 2 2001 Nalin Dahyabhai +- require webclient, not weclient + +* Wed May 2 2001 Bill Nottingham +- build urlview here + +* Fri Mar 2 2001 Nalin Dahyabhai +- rebuild in new environment + +* Tue Feb 13 2001 Bill Nottingham +- change buildprereq to /usr/sbin/sendmail (it's what it should have been + originally) +- %%langify + +* Tue Feb 13 2001 Michael Stefaniuc +- changed buildprereq to smtpdaemon + +* Tue Dec 19 2000 Bill Nottingham +- rebuild; it's just broken +- fix #13196 +- buildprereq sendmail + +* Fri Dec 01 2000 Bill Nottingham +- rebuild because of broken fileutils + +* Fri Nov 10 2000 Nalin Dahyabhai +- include a sample LDAP query script as a doc file + +* Mon Nov 6 2000 Nalin Dahyabhai +- patch for imap servers that like to volunteer information after AUTHENTICATE + +* Thu Aug 24 2000 Nalin Dahyabhai +- rebuild in new environment +- force flock() off and fcntl() on in case defaults change + +* Tue Aug 8 2000 Nalin Dahyabhai +- enable SSL support + +* Fri Aug 4 2000 Bill Nottingham +- add translation to desktop entry + +* Fri Jul 28 2000 Bill Nottingham +- update to 1.2.5i - fixes IMAP bugs + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Fri Jul 7 2000 Bill Nottingham +- 1.2.4i + +* Tue Jun 27 2000 Nalin Dahyabhai +- rebuild in new environment (release 3) +- adjust GSSAPI build logic + +* Thu Jun 22 2000 Bill Nottingham +- fix MD5 code + +* Wed Jun 21 2000 Bill Nottingham +- update to 1.2.2i + +* Mon Jun 19 2000 Trond Eivind Glomsrød +- use aspell + +* Sat Jun 10 2000 Bill Nottingham +- FHS fixes + +* Wed May 10 2000 Bill Nottingham +- add some files + +* Tue May 9 2000 Bill Nottingham +- update to 1.2i + +* Tue Apr 4 2000 Bill Nottingham +- eliminate explicit krb5-configs dependency + +* Wed Mar 22 2000 Bill Nottingham +- auto is so much fun. + +* Wed Mar 01 2000 Nalin Dahyabhai +- make kerberos support conditional at compile-time + +* Mon Feb 07 2000 Preston Brown +- wmconfig -> desktop + +* Fri Feb 4 2000 Bill Nottingham +- keep the makefiles from re-running autoheader, automake, etc. + +* Thu Feb 3 2000 Nalin Dahyabhai +- add forward-ported sasl patch + +* Thu Feb 3 2000 Bill Nottingham +- handle compressed man pages, other cleanups + +* Wed Jan 19 2000 Bill Nottingham +- 1.0.1 + +* Mon Jan 3 2000 Bill Nottingham +- add the sample mime.types to /usr/doc + +* Sat Jan 1 2000 Bill Nottingham +- fix an odd y2k issue on receiving mail from ancient clients + +* Thu Oct 21 1999 Bill Nottingham +- one-point-oh. + +* Sat Sep 25 1999 Bill Nottingham +- add a buffer overflow patch + +* Tue Aug 31 1999 Bill Nottingham +- update to 1.0pre2 + +* Tue Aug 17 1999 Bill Nottingham +- update to 0.95.7 +- require urlview since the default muttrc uses it + +* Mon Jun 21 1999 Bill Nottingham +- get correct manual path the Right Way(tm) +- make it so it uses default colors even if COLORFGBG isn't set + +* Mon Jun 14 1999 Bill Nottingham +- update to 0.95.6 + +* Mon Apr 26 1999 Bill Nottingham +- try and make sure $RPM_OPT_FLAGS gets passed through + +* Fri Apr 23 1999 Bill Nottingham +- update to 0.95.5 + +* Mon Mar 29 1999 Bill Nottingham +- sed correct doc path into /etc/Muttrc for viewing manual + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 3) + +* Thu Mar 18 1999 Bill Nottingham +- strip binary + +* Mon Mar 8 1999 Bill Nottingham +- update to 0.95.4 - fixes a /tmp race + +* Wed Feb 24 1999 Bill Nottingham +- the RETURN OF WMCONFIG! Aiyeee! + +* Fri Feb 12 1999 Bill Nottingham +- 0.95.3 - fixes mailcap handling + +* Mon Jan 4 1999 Bill Nottingham +- 0.95.1 + +* Sat Dec 12 1998 Bill Nottingham +- 0.95 + +* Fri Jul 31 1998 Bill Nottingham +- backport some 0.94.2 security fixes +- fix un-setgid +- update to 0.93.2 + +* Tue Jul 28 1998 Jeff Johnson +- security fix +- update to 0.93.1. +- turn off setgid mail. + +* Thu May 07 1998 Prospector System +- translations modified for de, fr, tr + +* Tue Apr 21 1998 Cristian Gafton +- updated to 0.91.1 + +* Fri Apr 10 1998 Cristian Gafton +- updated to mutt-0.89.1 + +* Thu Oct 16 1997 Otto Hammersmith +- Updated to mutt 0.85. +- added wmconfig entries. +- removed mime.types + +* Mon Sep 1 1997 Donnie Barnes +- Rebuilt to insure all sources were fresh and patches were clean. + +* Wed Aug 6 1997 Manoj Kasichainula +- Initial version for 0.81(e)