fa40b0
%bcond_without debug
fa40b0
%bcond_without imap
fa40b0
%bcond_without pop
fa40b0
%bcond_without smtp
fa40b0
%bcond_without gnutls
fa40b0
%bcond_without gss
fa40b0
%bcond_without sasl
fa40b0
%bcond_with idn
fa40b0
%bcond_without idn2
fa40b0
%bcond_without hcache
fa40b0
%bcond_without tokyocabinet
fa40b0
%bcond_with bdb
fa40b0
%bcond_with qdbm
fa40b0
%bcond_with gdbm
fa40b0
%bcond_without gpgme
fa40b0
%bcond_without sidebar
fa40b0
fa40b0
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
fa40b0
fa40b0
Summary: A text mode mail user agent
fa40b0
Name: mutt
343848
Version: 2.2.6
f40c52
Release: 1%{?dist}
fa40b0
Epoch: 5
fa40b0
# The entire source code is GPLv2+ except
fa40b0
# pgpewrap.c setenv.c sha1.c wcwidth.c which are Public Domain
fa40b0
License: GPLv2+ and Public Domain
fa40b0
# hg snapshot created from http://dev.mutt.org/hg/mutt
fa40b0
Source: ftp://ftp.mutt.org/pub/%{name}/%{name}-%{version}.tar.gz
fa40b0
Source1: mutt_ldap_query
fa40b0
Patch1: mutt-1.10.0-muttrc.patch
fa40b0
Patch2: mutt-1.8.0-cabundle.patch
fa40b0
# https://dev.mutt.org/trac/ticket/3569
fa40b0
Patch3: mutt-1.7.0-syncdebug.patch
fa40b0
# FIXME make it to upstream
fa40b0
Patch8: mutt-1.5.23-system_certs.patch
fa40b0
Patch9: mutt-1.9.0-ssl_ciphers.patch
fa40b0
Patch10: mutt-1.9.4-lynx_no_backscapes.patch
fa40b0
Patch12: mutt-1.9.5-nodotlock.patch
fa40b0
Patch13: mutt-1.12.1-optusegpgagent.patch
fa40b0
fa40b0
Url: http://www.mutt.org
fa40b0
Requires: mailcap, urlview
fa40b0
BuildRequires: make
fa40b0
BuildRequires: gcc
fa40b0
BuildRequires: ncurses-devel, gettext, automake
fa40b0
# manual generation
fa40b0
BuildRequires: /usr/bin/xsltproc, docbook-style-xsl, perl-interpreter
fa40b0
BuildRequires: perl-generators
fa40b0
BuildRequires: lynx
fa40b0
BuildRequires: docbook2X
fa40b0
fa40b0
%if %{with hcache}
fa40b0
%{?with_tokyocabinet:BuildRequires: tokyocabinet-devel}
fa40b0
%{?with_bdb:BuildRequires: db4-devel}
fa40b0
%{?with_qdbm:BuildRequires: qdbm-devel}
fa40b0
%{?with_gdbm:BuildRequires: gdbm-devel}
fa40b0
%endif
fa40b0
fa40b0
%if %{with imap} || %{with pop} || %{with smtp}
fa40b0
%{?with_gnutls:BuildRequires: gnutls-devel}
fa40b0
%{?with_sasl:BuildRequires: cyrus-sasl-devel}
fa40b0
%endif
fa40b0
fa40b0
%if %{with imap}
fa40b0
%{?with_gss:BuildRequires: krb5-devel}
fa40b0
%endif
fa40b0
fa40b0
%{?with_idn:BuildRequires: libidn-devel}
fa40b0
%{?with_idn2:BuildRequires: libidn2-devel}
fa40b0
%{?with_gpgme:BuildRequires: gpgme-devel}
fa40b0
fa40b0
fa40b0
%description
fa40b0
Mutt is a small but very powerful text-based MIME mail client.  Mutt
fa40b0
is highly configurable, and is well suited to the mail power user with
fa40b0
advanced features like key bindings, keyboard macros, mail threading,
fa40b0
regular expression searches and a powerful pattern matching language
fa40b0
for selecting groups of messages.
fa40b0
fa40b0
fa40b0
%prep
fa40b0
# unpack; cd
fa40b0
%setup -q
fa40b0
# do not run ./prepare -V, because it also runs ./configure
fa40b0
fa40b0
%patch10 -p1 -b .lynx_no_backscapes
fa40b0
%patch12 -p1 -b .nodotlock
fa40b0
fa40b0
autoreconf --install
fa40b0
%patch1 -p1 -b .muttrc
fa40b0
%patch2 -p1 -b .cabundle
fa40b0
%patch3 -p1 -b .syncdebug
fa40b0
%patch8 -p1 -b .system_certs
fa40b0
%patch9 -p1 -b .ssl_ciphers
fa40b0
%patch13 -p1 -b .optusegpgagent
fa40b0
fa40b0
sed -i -r 's/`$GPGME_CONFIG --libs`/"\0 -lgpg-error"/' configure
fa40b0
fa40b0
install -p -m644 %{SOURCE1} mutt_ldap_query
fa40b0
fa40b0
%global hgreldate \\.(201[0-9])([0-1][0-9])([0-3][0-9])hg
fa40b0
if echo %{release} | grep -E -q '%{hgreldate}'; then
fa40b0
  echo -n 'const char *ReleaseDate = ' > reldate.h
fa40b0
  echo %{release} | sed -r 's/.*%{hgreldate}.*/"\1-\2-\3";/' >> reldate.h
fa40b0
fi
fa40b0
fa40b0
# remove mutt_ssl.c to be sure it won't be used because it violates
fa40b0
# Packaging:CryptoPolicies
fa40b0
# https://fedoraproject.org/wiki/Packaging:CryptoPolicies
fa40b0
rm -f mutt_ssl.c
fa40b0
fa40b0
fa40b0
%build
fa40b0
%configure \
fa40b0
    SENDMAIL=%{_sbindir}/sendmail \
fa40b0
    ISPELL=%{_bindir}/hunspell \
fa40b0
    %{?with_debug:	--enable-debug}\
fa40b0
    %{?with_pop:	--enable-pop}\
fa40b0
    %{?with_imap:	--enable-imap} \
fa40b0
    %{?with_smtp:	--enable-smtp} \
fa40b0
\
fa40b0
    %if %{with hcache}
fa40b0
    --enable-hcache \
fa40b0
    %{!?with_tokyocabinet:	--without-tokyocabinet} \
fa40b0
    %{!?with_gdbm:	--without-gdbm} \
fa40b0
    %{!?with_qdbm:	--without-qdbm} \
fa40b0
    %endif
fa40b0
\
fa40b0
    %if %{with imap} || %{with pop} || %{with smtp}
fa40b0
    %{?with_gnutls:	--with-gnutls} \
fa40b0
    %{?with_sasl:	--with-sasl} \
fa40b0
    %endif
fa40b0
\
fa40b0
    %if %{with imap}
fa40b0
    %{?with_gss:	--with-gss} \
fa40b0
    %endif
fa40b0
\
fa40b0
    %{?with_idn:	--with-idn} \
fa40b0
    %{!?with_idn:	--without-idn} \
fa40b0
    %{?with_idn2:   --with-idn2} \
fa40b0
    %{!?with_idn2:  --without-idn2} \
fa40b0
\
fa40b0
    %{?with_gpgme:	--enable-gpgme} \
fa40b0
    %{?with_sidebar: --enable-sidebar} \
fa40b0
    --with-docdir=%{_pkgdocdir}
fa40b0
fa40b0
%make_build
fa40b0
fa40b0
# remove unique id in manual.html because multilib conflicts
fa40b0
sed -i -r 's///g' doc/manual.html
fa40b0
fa40b0
fa40b0
%install
fa40b0
%make_install
fa40b0
fa40b0
# we like GPG here
fa40b0
cat contrib/gpg.rc >> \
fa40b0
      %{buildroot}%{_sysconfdir}/Muttrc
fa40b0
fa40b0
grep -5 "^color" contrib/sample.muttrc >> \
fa40b0
      %{buildroot}%{_sysconfdir}/Muttrc
fa40b0
fa40b0
cat >> %{buildroot}%{_sysconfdir}/Muttrc <<\EOF
fa40b0
source %{_sysconfdir}/Muttrc.local
fa40b0
EOF
fa40b0
fa40b0
echo "# Local configuration for Mutt." > \
fa40b0
      %{buildroot}%{_sysconfdir}/Muttrc.local
fa40b0
fa40b0
# remove unpackaged files from the buildroot
fa40b0
rm -f %{buildroot}%{_sysconfdir}/*.dist
fa40b0
rm -f %{buildroot}%{_sysconfdir}/mime.types
fa40b0
# disable mutt_dotlock program - remove the compiled binary
fa40b0
rm -f %{buildroot}%{_bindir}/mutt_dotlock
fa40b0
rm -f %{buildroot}%{_bindir}/muttbug
fa40b0
rm -f %{buildroot}%{_bindir}/flea
fa40b0
rm -f %{buildroot}%{_mandir}/man1/mutt_dotlock.1*
fa40b0
rm -f %{buildroot}%{_mandir}/man1/muttbug.1*
fa40b0
rm -f %{buildroot}%{_mandir}/man1/flea.1*
fa40b0
rm -f %{buildroot}%{_mandir}/man5/mbox.5*
fa40b0
rm -f %{buildroot}%{_mandir}/man5/mmdf.5*
fa40b0
rm -rf %{buildroot}%{_pkgdocdir}
fa40b0
fa40b0
# remove /usr/share/info/dir
fa40b0
rm %{buildroot}%{_infodir}/dir
fa40b0
fa40b0
# provide muttrc.local(5): the same as muttrc(5)
fa40b0
ln -sf ./muttrc.5 %{buildroot}%{_mandir}/man5/muttrc.local.5
fa40b0
fa40b0
%find_lang %{name}
fa40b0
fa40b0
fa40b0
%files -f %{name}.lang
fa40b0
%{!?_licensedir:%global license %doc}
fa40b0
%license COPYRIGHT GPL
fa40b0
%doc ChangeLog NEWS README* UPDATING mutt_ldap_query
fa40b0
%doc contrib/*.rc contrib/sample.* contrib/colors.*
fa40b0
%doc doc/manual.html doc/manual.txt doc/smime-notes.txt
fa40b0
%config(noreplace) %{_sysconfdir}/Muttrc
fa40b0
%config(noreplace) %{_sysconfdir}/Muttrc.local
fa40b0
%{_bindir}/mutt
fa40b0
%{_bindir}/mutt_pgpring
fa40b0
%{_bindir}/pgpewrap
fa40b0
%{_bindir}/smime_keys
fa40b0
%{_mandir}/man1/mutt.*
fa40b0
%{_mandir}/man1/smime_keys.*
fa40b0
%{_mandir}/man1/mutt_pgpring.*
fa40b0
%{_mandir}/man1/pgpewrap.*
fa40b0
%{_mandir}/man5/muttrc.*
fa40b0
%{_infodir}/mutt.info.*
fa40b0
fa40b0
fa40b0
%changelog
343848
* Mon Jul 25 2022 Matej MuĹľila <mmuzila@redhat.com> - 5:2.2.6-1
343848
- Rebase to upstream version 2.2.6
343848
  Resolves: CVE-2022-1328
343848
f40c52
* Tue Jan 11 2022 Matej MuĹľila <mmuzila@redhat.com> - 5:2.1.5-1
f40c52
- Rebase to upstream version 2.1.5
f40c52
  Resolves: rhbz#2032988 rhbz#1959896
f40c52
fa40b0
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 5:2.0.6-3
fa40b0
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
fa40b0
  Related: rhbz#1991688
fa40b0
fa40b0
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 5:2.0.6-2
fa40b0
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
fa40b0
fa40b0
* Mon Mar 22 2021 Filip Januš <fjanus@redhat.com> 5:2.0.6-1
fa40b0
- Rebase to upstream version 2.0.6
fa40b0
fa40b0
* Mon Feb 1 2021 Filip Januš <fjanus@redhat.com> -5:2.0.5-1
fa40b0
- Rebase to upstream version 2.0.5
fa40b0
- Fix CVE-2021-3181
fa40b0
fa40b0
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5:2.0.2-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
fa40b0
fa40b0
* Tue Dec 01 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:2.0.2-1
fa40b0
- Upgrade to 2.0.2
fa40b0
- Resolves: #1895629, #1900827, CVE-2020-28896
fa40b0
fa40b0
* Tue Sep 01 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:1.14.7-2
fa40b0
- Fix mutt-1.9.4-lynx_no_backscapes.patch
fa40b0
fa40b0
* Mon Aug 31 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:1.14.7-1
fa40b0
- Upgrade to 1.14.7
fa40b0
fa40b0
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.14.6-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
fa40b0
fa40b0
* Wed Jul 22 2020 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.14.6-1
fa40b0
- Upgrade to 1.14.6
fa40b0
fa40b0
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 5:1.14.5-2
fa40b0
- Use make macros
fa40b0
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
fa40b0
fa40b0
* Wed Jun 24 2020 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.14.5-1
fa40b0
- Upgrade to 1.14.5
fa40b0
fa40b0
* Fri Jun 19 2020 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.14.4-1
fa40b0
- Upgrade to 1.14.4
fa40b0
- Resolves: #1848768
fa40b0
fa40b0
* Mon Jun 15 2020 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.14.3-1
fa40b0
- Upgrade to 1.14.3
fa40b0
- Resolves: #1836550
fa40b0
fa40b0
* Tue May 26 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:1.14.2-1
fa40b0
- Upgrade to 1.14.2
fa40b0
- Resolves: #1836550
fa40b0
fa40b0
* Sat May 09 2020 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.14.0-1
fa40b0
- Upgrade to 1.14.0
fa40b0
- Resolves: #1818513
fa40b0
fa40b0
* Tue Apr 07 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:1.13.5-1
fa40b0
- Upgrade to 1.13.5
fa40b0
- Resolves: #1818513
fa40b0
fa40b0
* Mon Feb 17 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:1.13.4-1
fa40b0
- Upgrade to 1.13.4
fa40b0
- Resolves: #1803392
fa40b0
fa40b0
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.13.3-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
fa40b0
fa40b0
* Wed Jan 15 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:1.13.3-1
fa40b0
- Upgrade to 1.13.3
fa40b0
- Resolves: #1783717, #1785500
fa40b0
fa40b0
* Fri Jan 03 2020 Matej MuĹľila <mmuzila@redhat.com> - 5:1.13.2-1
fa40b0
- Upgrade to 1.13.2
fa40b0
- Resolves: #1783717
fa40b0
fa40b0
* Mon Dec 02 2019 Matej MuĹľila <mmuzila@redhat.com> - 5:1.13.0-1
fa40b0
- Upgrade to 1.13.0
fa40b0
- Resolves: #1754211
fa40b0
fa40b0
* Tue Sep 24 2019 Matej MuĹľila <mmuzila@redhat.com> - 5:1.12.2-1
fa40b0
- Upgrade to 1.12.2
fa40b0
- Resolves: #1754211
fa40b0
fa40b0
* Thu Aug 29 2019 Matej MuĹľila <mmuzila@redhat.com> - 5:1.12.1-3
fa40b0
- Make mutt to ask for GPG passphrase
fa40b0
- Resolves: #1731854
fa40b0
fa40b0
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.12.1-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
fa40b0
fa40b0
* Wed Jul 17 2019 Matej MuĹľila <mmuzila@redhat.com> - 5:1.12.1-1
fa40b0
- Upgrade to 1.12.1
fa40b0
- Resolves #1720848
fa40b0
fa40b0
* Tue May 28 2019 Matej MuĹľila <mmuzila@redhat.com> - 5:1.12.0-1
fa40b0
- Upgrade to 1.12.0
fa40b0
- Resolves #1710398,#1713910
fa40b0
fa40b0
* Wed Apr 24 2019 Björn Esser <besser82@fedoraproject.org> - 5:1.11.4-2
fa40b0
- Remove hardcoded gzip suffix from GNU info pages
fa40b0
fa40b0
* Wed Feb 06 2019 Matej MuĹľila <mmuzila@redhat.com> - 5:1.11.4-1
fa40b0
- Upgrade to 1.11.4
fa40b0
- Resolves #1688091
fa40b0
fa40b0
* Wed Feb 06 2019 Matej MuĹľila <mmuzila@redhat.com> - 5:1.11.3-1
fa40b0
- Upgrade to 1.11.3
fa40b0
- Resolves #1659217
fa40b0
fa40b0
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.10.1-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
fa40b0
fa40b0
* Tue Jul 17 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.10.1-1
fa40b0
- Upgrade to 1.10.1
fa40b0
fa40b0
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.10.0-3
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
fa40b0
fa40b0
* Thu May 24 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.10.0-2
fa40b0
- Disable post-install mutt_dotlock checking by patch, not by sed.
fa40b0
fa40b0
* Tue May 22 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.10.0-1
fa40b0
- Upgrade to 1.10.0
fa40b0
fa40b0
* Thu Apr 19 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.5-4
fa40b0
- Disable dotlock by patch instead of sed
fa40b0
- Resolves: #1568597
fa40b0
fa40b0
* Wed Apr 18 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.5-3
fa40b0
- Apply patches of autoreconf related configuration files before running
fa40b0
  autoreconf
fa40b0
fa40b0
* Mon Apr 16 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.5-2
fa40b0
- Use libidn2 instead of libidn
fa40b0
fa40b0
* Mon Apr 16 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.5-1
fa40b0
- Upgrade to 1.9.5
fa40b0
fa40b0
* Fri Apr 13 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.4-2
fa40b0
- Use lynx to generate documentation
fa40b0
fa40b0
* Mon Apr 09 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.4-1
fa40b0
- Upgrade to 1.9.4
fa40b0
fa40b0
* Tue Feb 13 2018 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.3-1
fa40b0
- Upgrade to 1.9.3
fa40b0
fa40b0
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.9.2-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
fa40b0
fa40b0
* Wed Dec 20 2017 Matej MuĹľila <mmuzila@redhat.com> - 5:1.9.2-1
fa40b0
- Upgrade to 1.9.2
fa40b0
fa40b0
* Sun Sep 24 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.9.1-1
fa40b0
- Upgrade to 1.9.1
fa40b0
fa40b0
* Mon Sep 04 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.9.0-1
fa40b0
- Upgrade to 1.9.0
fa40b0
- Rebase mutt-1.5.23-ssl_ciphers.patch to mutt-1.9.0-ssl_ciphers.patch
fa40b0
fa40b0
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.8.3-3
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
fa40b0
fa40b0
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.8.3-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
fa40b0
fa40b0
* Wed Jun 21 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.8.3-1
fa40b0
- Upgrade to 1.8.3
fa40b0
fa40b0
* Mon Apr 24 2017 Matej MuĹľila <mmuzila@redhat.com> - 5:1.8.2-1
fa40b0
- Update to 1.8.2
fa40b0
fa40b0
* Sat Feb 25 2017 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.8.0-1
fa40b0
- Upgrade to 1.8.0
fa40b0
- Rebase muttrc patch
fa40b0
- Rebase cabundle patch
fa40b0
fa40b0
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.7.2-3
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
fa40b0
fa40b0
* Sat Dec 10 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 5:1.7.2-2
fa40b0
- Rebuild for gpgme 1.18
fa40b0
fa40b0
* Mon Dec 05 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.7.2-1
fa40b0
- Upgrade to 1.7.2
fa40b0
fa40b0
* Sun Oct 09 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.7.1-1
fa40b0
- Upgrade to 1.7.1
fa40b0
- Rebase cabundle patch
fa40b0
fa40b0
* Sat Aug 20 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.7.0-1
fa40b0
- Upgrade to 1.7.0
fa40b0
fa40b0
* Thu Jul 07 2016 Jon Ciesla <limburgher@gmail.com> - 5:1.6.2-1
fa40b0
- Upgrade to 1.6.2
fa40b0
fa40b0
* Mon May 02 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.6.1-1
fa40b0
- Upgrade to 1.6.1
fa40b0
fa40b0
* Mon Apr 18 2016 Fabio Alessandro Locati <fale@fedoraproject.org> - 5:1.6.0-1
fa40b0
- Upgrade to 1.6.0
fa40b0
- Drop patch domainname since it should not be needed any more
fa40b0
fa40b0
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5:1.5.24-2
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
fa40b0
fa40b0
* Fri Sep 04 2015 Matej Muzila <mmuzila@redhat.com> - 5:1.5.24-1
fa40b0
- Updated to 1.5.24 (Resolves: rhbz#1259332)
fa40b0
- Utilize system-wide crypto-policies (Resolves: rhbz#1179324)
fa40b0
fa40b0
* Thu Jun 25 2015 Matej Muzila <mmuzila@redhat.com> - 5:1.5.23-9
fa40b0
- Make system CA bundle default in mutt
fa40b0
- Resolves: #1069778
fa40b0
fa40b0
* Tue Jun 02 2015 Matej Muzila <mmuzila@redhat.com> - 5:1.5.23-8
fa40b0
- Resolves #1227288
fa40b0
- Do not send "From" header without the host part (eg. <foo@>)
fa40b0
fa40b0
* Wed Dec 03 2014 Matej Muzila <mmuzila@redhat.com> - 5:1.5.23-7
fa40b0
- added patch file forgotten in last commit
fa40b0
fa40b0
* Wed Dec 03 2014 Matej Muzila <mmuzila@redhat.com> - 5:1.5.23-6
fa40b0
- resolves #1168464 (CVE-2014-9116)
fa40b0
fa40b0
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.23-5
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
fa40b0
fa40b0
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.23-4
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
fa40b0
fa40b0
* Mon May 26 2014 Jan Pacner <jpacner@redhat.com> - 5:1.5.23-3
fa40b0
- Resolves: #1096756 ([RFE] compile with --enable-debug by default)
fa40b0
fa40b0
* Thu May 15 2014 Dan Horák <dan[at]danny.cz> - 5:1.5.23-2
fa40b0
- update Makefile.am before running autoreconf
fa40b0
fa40b0
* Tue Apr 29 2014 Jan Pacner <jpacner@redhat.com> - 5:1.5.23-1
fa40b0
- Resolves: #1034263 (new version due to CVE)
fa40b0
- patch cleanup (upstream fixes)
fa40b0
- add html documentation (in addition to the current txt one)
fa40b0
fa40b0
* Mon Dec 02 2013 Jan Pacner <jpacner@redhat.com> - 5:1.5.22-1
fa40b0
- new release (Resolves: #1034263)
fa40b0
- use inline sed instead of nodotlock patch
fa40b0
- patches removed: testcert, hdrcnt, certscomp, updating, pophash,
fa40b0
  notation, writehead, tmpdir, verpeers, tlsv1v2
fa40b0
- manhelp patch adjusted (only DEBUG logging capability was left)
fa40b0
fa40b0
* Mon Oct 21 2013 Honza Horak <hhorak@redhat.com> - 5:1.5.21-26
fa40b0
- Fixed patch for certificates comparison
fa40b0
fa40b0
* Mon Sep 23 2013 Miroslav Lichvar <mlichvar@redhat.com> - 5:1.5.21-25
fa40b0
- Revert to packaging only selected doc files
fa40b0
fa40b0
* Thu Aug  8 2013 Ville Skyttä <ville.skytta@iki.fi> - 5:1.5.21-24
fa40b0
- Fix FTBFS with unversioned %%{_docdir_fmt} (#992311), drop duplicate docs.
fa40b0
fa40b0
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.21-23
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
fa40b0
fa40b0
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 5:1.5.21-22
fa40b0
- Perl 5.18 rebuild
fa40b0
fa40b0
* Thu Jun 27 2013 Honza Horak <hhorak@redhat.com> - 5:1.5.21-21
fa40b0
- Backported support for TLS 1.2 and TLS 1.2 protocols
fa40b0
  Resolves: #957840
fa40b0
fa40b0
* Wed May 29 2013 Honza Horak <hhorak@redhat.com> - 5:1.5.21-20
fa40b0
- Fix patch for #750929
fa40b0
  Resolves: #957542
fa40b0
fa40b0
* Mon May 20 2013 Honza Horak <hhorak@redhat.com> - 5:1.5.21-19
fa40b0
- Fix missing options in doc and pgpring, pgpewrap man page
fa40b0
fa40b0
* Mon Mar  4 2013 Honza Horak <hhorak@redhat.com> - 5:1.5.21-18
fa40b0
- gnutls_certificate_verify_peers became deprecated, using
fa40b0
  a recent alternative
fa40b0
fa40b0
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.21-17
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
fa40b0
fa40b0
* Mon Dec 03 2012 Honza Horak <hhorak@redhat.com> - 5:1.5.21-16
fa40b0
- remove unique id in manual.html because multilib conflict
fa40b0
- provide muttrc.local(5)
fa40b0
fa40b0
* Thu Sep 27 2012 Honza Horak <hhorak@redhat.com> - 5:1.5.21-15
fa40b0
- Change default tmpdir from /tmp to /var/tmp
fa40b0
  Resolves: #858264
fa40b0
fa40b0
* Mon Sep 10 2012 Honza Horak <hhorak@redhat.com> - 5:1.5.21-14
fa40b0
- Minor spec file changes
fa40b0
fa40b0
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.21-13
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
fa40b0
fa40b0
* Thu May 10 2012 Honza Horak <hhorak@redhat.com> - 5:1.5.21-12
fa40b0
- Fix segmentation fault while syncing mailbox
fa40b0
  (rhbz#691719)
fa40b0
- Fix unhandled strchr output
fa40b0
  (rhbz#833044)
fa40b0
fa40b0
* Wed Apr 25 2012 Honza Horak <hhorak@redhat.com> - 5:1.5.21-11
fa40b0
- Patch from Petr Pisar fixing verification of PGP signatures 
fa40b0
  with NULL notation
fa40b0
  (rhbz#816044)
fa40b0
fa40b0
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.21-10
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
fa40b0
fa40b0
* Wed Dec 07 2011 Honza Horak <hhorak@redhat.com> - 5:1.5.21-9
fa40b0
- Fixed a segmentation fault while parsing the certificates file
fa40b0
  (rhbz#750929)
fa40b0
fa40b0
* Wed Nov 02 2011 Honza Horak <hhorak@redhat.com> - 5:1.5.21-8
fa40b0
- Removed ca-bundle.crt since it is outdated (rhbz#734379)
fa40b0
- Build with gpgme support by default (rhbz#748337)
fa40b0
- Fixed segmentation fault during messages removal in thread mode
fa40b0
  (rhbz#674271)
fa40b0
fa40b0
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.21-7
fa40b0
- Rebuilt for glibc bug#747377
fa40b0
fa40b0
* Wed Jun 29 2011 Honza Horak <hhorak@redhat.com> - 5:1.5.21-6
fa40b0
- Fixed message indexes when skipping fetch response (mutt bug #3288)
fa40b0
fa40b0
* Fri Apr 15 2011 Honza Horak <hhorak@redhat.com> - 5:1.5.21-5
fa40b0
- Fixed hostname verification of x.509 certificates.
fa40b0
  (rhbz#688756, CVE-2011-1429)
fa40b0
fa40b0
* Tue Mar 29 2011 Honza Horak <hhorak@redhat.com> - 5:1.5.21-4
fa40b0
- Fixed segmentation faults during reading message headers (rhbz#676074)
fa40b0
fa40b0
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.21-3
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
fa40b0
fa40b0
* Wed Sep 29 2010 jkeating - 5:1.5.21-2
fa40b0
- Rebuilt for gcc bug 634757
fa40b0
fa40b0
* Tue Sep 21 2010 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.21-1
fa40b0
- update to 1.5.21
fa40b0
- link with gpg-error when building with gpgme support (#621626)
fa40b0
fa40b0
* Fri Jul 30 2010 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.20-3.20100718hg1a35f0
fa40b0
- update to hg snapshot 20100718hg1a35f0
fa40b0
fa40b0
* Thu Dec 17 2009 Deji Akingunola <dakingun@gmail.com> - 5:1.5.20-2.20091214hg736b6a.1
fa40b0
- Rebuild for tokyocabinet new release soname bump
fa40b0
fa40b0
* Wed Dec 16 2009 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.20-2.20091214hg736b6a
fa40b0
- update to hg snapshot 20091214hg736b6a
fa40b0
fa40b0
* Fri Sep 18 2009 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.20-1.20090827hg605559
fa40b0
- update to post 1.5.20 hg snapshot (#515148)
fa40b0
- use hunspell by default (#510358)
fa40b0
fa40b0
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.19-6
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
fa40b0
fa40b0
* Tue Jun 09 2009 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.19-5
fa40b0
- fix certificate verification (CVE-2009-1390)
fa40b0
- add support for gnutls INSECURE_ALGORITHM error code (#499390) 
fa40b0
fa40b0
* Wed Apr 01 2009 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.19-4
fa40b0
- use PATH_MAX for buffers passed to realpath (#492861)
fa40b0
- unconditionally inode-sort Maildir and MH folders
fa40b0
- restore connection polling callback when closing SASL connection
fa40b0
fa40b0
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5:1.5.19-3
fa40b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
fa40b0
fa40b0
* Wed Jan 14 2009 Alex Lancaster <alexlan[AT]fedoraproject org> - 5:1.5.19-2
fa40b0
- Rebuild for deps
fa40b0
fa40b0
* Wed Jan 07 2009 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.19-1
fa40b0
- update to 1.5.19
fa40b0
- switch hcache backend to tokyocabinet
fa40b0
- drop intr patch
fa40b0
fa40b0
* Mon Jul 28 2008 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.18-4
fa40b0
- rebuild with db4.7 (Robert Scheck) (#455144)
fa40b0
fa40b0
* Wed Jun 25 2008 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.18-3
fa40b0
- buildrequire aspell (#452133)
fa40b0
- rebuild with new gnutls
fa40b0
fa40b0
* Mon Jun 02 2008 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.18-2
fa40b0
- allow interrupts when reading, writing or closing sockets (#447887)
fa40b0
- fix possible crash when opening IMAP mailbox
fa40b0
fa40b0
* Mon May 19 2008 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.18-1
fa40b0
- update to 1.5.18
fa40b0
fa40b0
* Fri Apr 04 2008 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.17-4
fa40b0
- fix sending long commands when using gnutls (#438275)
fa40b0
- glob tilde in smime_keys (#424311)
fa40b0
- fix awk script in mutt_ldap_query
fa40b0
- force building with libdb
fa40b0
- make enabling/disabling features in spec easier
fa40b0
fa40b0
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 5:1.5.17-3
fa40b0
- Autorebuild for GCC 4.3
fa40b0
fa40b0
* Fri Nov 23 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.17-2
fa40b0
- don't ignore $from in batch send mode (#392861)
fa40b0
- check Maildir for not being NULL when expanding '='-paths
fa40b0
- prevent mailto parsing buffer overflow by ignoring too long header
fa40b0
- use strtok_r() to parse mailto: links, not strtok()
fa40b0
- update UPDATING
fa40b0
fa40b0
* Fri Nov 02 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.17-1
fa40b0
- update to 1.5.17
fa40b0
fa40b0
* Mon Sep 17 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.16-4
fa40b0
- fix md5 on big-endian systems
fa40b0
fa40b0
* Tue Aug 28 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.16-3
fa40b0
- replace md5 implementation
fa40b0
- update license tag
fa40b0
fa40b0
* Wed Jul 11 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.16-2
fa40b0
- split urlview off, fix requires and description (#226167)
fa40b0
fa40b0
* Mon Jun 11 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.16-1
fa40b0
- update to 1.5.16
fa40b0
fa40b0
* Mon May 28 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.14-4
fa40b0
- validate msgid in APOP authentication (CVE-2007-1558)
fa40b0
- fix overflow in gecos field handling (CVE-2007-2683)
fa40b0
fa40b0
* Mon Mar 19 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.14-3
fa40b0
- fix building
fa40b0
fa40b0
* Mon Mar 19 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.14-2
fa40b0
- add check_mbox_size configuration variable; if enabled, file size is used
fa40b0
  instead of access time when checking for new mail
fa40b0
- bind delete key to delete-char (#232601)
fa40b0
fa40b0
* Fri Feb 23 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.14-1
fa40b0
- update to 1.5.14
fa40b0
fa40b0
* Thu Feb 15 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.13-2.20070212cvs
fa40b0
- update to latest CVS
fa40b0
- enable libidn support (#228158)
fa40b0
fa40b0
* Wed Feb 07 2007 Miroslav Lichvar <mlichvar@redhat.com> 5:1.5.13-1.20070126cvs
fa40b0
- update to 1.5.13, and latest CVS (#168183, #220816)
fa40b0
- spec cleanup
fa40b0
fa40b0
* Wed Dec 06 2006 Miroslav Lichvar <mlichvar@redhat.com> 5:1.4.2.2-5
fa40b0
- use correct fcc folder with IMAP (#217469)
fa40b0
- don't require smtpdaemon, gettext
fa40b0
fa40b0
* Tue Oct 31 2006 Miroslav Lichvar <mlichvar@redhat.com> 5:1.4.2.2-4
fa40b0
- fix POP authentication with latest cyrus-sasl (#212816)
fa40b0
fa40b0
* Tue Oct 24 2006 Miroslav Lichvar <mlichvar@redhat.com> 5:1.4.2.2-3
fa40b0
- fix insecure temp file creation on NFS (#211085, CVE-2006-5297)
fa40b0
fa40b0
* Thu Aug 03 2006 Miroslav Lichvar <mlichvar@redhat.com> 5:1.4.2.2-2
fa40b0
- fix a SASL authentication bug (#199591)
fa40b0
fa40b0
* Mon Jul 17 2006 Miroslav Lichvar <mlichvar@redhat.com> 5:1.4.2.2-1
fa40b0
- update to 1.4.2.2
fa40b0
- fix directories in manual.txt (#162207)
fa40b0
- drop bcc patch (#197408)
fa40b0
- don't package flea
fa40b0
fa40b0
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 5:1.4.2.1-7.1
fa40b0
- rebuild
fa40b0
fa40b0
* Thu Jun 29 2006 Miroslav Lichvar <mlichvar@redhat.com> 5:1.4.2.1-7
fa40b0
- fix a buffer overflow when processing IMAP namespace (#197152, CVE-2006-3242)
fa40b0
fa40b0
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 5:1.4.2.1-6.2.1
fa40b0
- bump again for double-long bug on ppc(64)
fa40b0
fa40b0
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 5:1.4.2.1-6.2
fa40b0
- rebuilt for new gcc4.1 snapshot and glibc changes
fa40b0
fa40b0
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
fa40b0
- rebuilt
fa40b0
fa40b0
* Wed Nov  9 2005 Bill Nottingham <notting@redhat.com> 5:1.4.2.1-6
fa40b0
- rebuild against new ssl libs
fa40b0
fa40b0
* Thu Oct 27 2005 Bill Nottingham <notting@redhat.com> 5:1.4.2.1-5
fa40b0
- add patch from 1.5 branch to fix SASL logging (#157251, #171528)
fa40b0
fa40b0
* Fri Aug 26 2005 Bill Nottingham <notting@redhat.com> 5:1.4.2.1-3
fa40b0
- add patch from 1.5 branch to fix base64 decoding (#166718)
fa40b0
fa40b0
* Mon Mar  7 2005 Bill Nottingham <notting@redhat.com> 5:1.4.2.1-2
fa40b0
- rebuild against new openssl
fa40b0
- fix build with gcc4
fa40b0
fa40b0
* Thu Jan 27 2005 Bill Nottingham <notting@redhat.com> 5:1.4.2.1-1
fa40b0
- update to 1.4.2.1 (#141007, <moritz@barsnick.net>)
fa40b0
- include a /etc/Muttrc.local for site config (#123109)
fa40b0
- add <f2> as a additional help key for terminals that use <f1> internally
fa40b0
  (#139277)
fa40b0
fa40b0
* Wed Sep 15 2004 Nalin Dahyabhai <nalin@redhat.com> 5:1.4.1-10
fa40b0
- expect the server to prompt for additional auth data if we have some to
fa40b0
  send (#129961, upstream #1845)
fa40b0
- use "pop" as the service name instead of "pop-3" when using SASL for POP,
fa40b0
  per rfc1734
fa40b0
fa40b0
* Fri Aug 13 2004 Bill Nottingham <notting@redhat.com> 5:1.4.1-9
fa40b0
- set write_bcc to no by default (since we ship exim)
fa40b0
- build against sasl2 (#126724)
fa40b0
fa40b0
* Mon Jun 28 2004 Bill Nottingham <notting@redhat.com>
fa40b0
- remove autosplat patch (#116769)
fa40b0
fa40b0
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
fa40b0
- rebuilt
fa40b0
fa40b0
* Tue Jun  8 2004 Bill Nottingham <notting@redhat.com> 5:1.4.1-7
fa40b0
- link urlview against ncursesw (fixes #125530, indirectly)
fa40b0
fa40b0
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
fa40b0
- rebuilt
fa40b0
fa40b0
* Tue Jan 27 2004 Bill Nottingham <notting@redhat.com> 5:1.4.1-5
fa40b0
- add patch to fix menu padding (CAN-2004-0078, #109317)
fa40b0
fa40b0
* Mon Aug 18 2003 Bill Nottingham <notting@redhat.com> 5:1.4.1-4
fa40b0
- rebuild against ncursesw
fa40b0
fa40b0
* Tue Jul 22 2003 Nalin Dahyabhai <nalin@redhat.com> 5:1.4.1-3.2
fa40b0
- rebuild
fa40b0
fa40b0
* Mon Jul  7 2003 Bill Nottingham <notting@redhat.com> 5:1.4.1-3
fa40b0
- fix auth to windows KDCs (#98662)
fa40b0
fa40b0
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
fa40b0
- rebuilt
fa40b0
fa40b0
* Wed Mar 19 2003 Bill Nottingham <notting@redhat.com> 5:1.4.1-1
fa40b0
- update to 1.4.1, fixes buffer overflow in IMAP code
fa40b0
fa40b0
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
fa40b0
- rebuilt
fa40b0
fa40b0
* Mon Jan 20 2003 Bill Nottingham <notting@redhat.com> 5:1.4-9
fa40b0
- add mailcap requires
fa40b0
- change urlview to htmlview as default browser
fa40b0
fa40b0
* Fri Jan 17 2003 Florian La Roche <Florian.LaRoche@redhat.de>
fa40b0
- change urlview to mozilla as default browser
fa40b0
fa40b0
* Tue Jan 7 2003 Nalin Dahyabhai <nalin@redhat.com> 5:1.4-7
fa40b0
- rebuild
fa40b0
fa40b0
* Mon Dec 2 2002 Bill Nottingham <notting@redhat.com> 5:1.4-6
fa40b0
- ship flea
fa40b0
fa40b0
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 5:1.4-5
fa40b0
- remove unpackaged files from the buildroot
fa40b0
fa40b0
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
fa40b0
- automated rebuild
fa40b0
fa40b0
* Fri Jun 14 2002 Bill Nottingham <notting@redhat.com> 1.4-3
fa40b0
- rebuild against new slang
fa40b0
fa40b0
* Wed May 29 2002 Nalin Dahyabhai <nalin@redhat.com> 1.4-2
fa40b0
- forcibly enable SSL and GSSAPI support
fa40b0
fa40b0
* Wed May 29 2002 Bill Nottingham <notting@redhat.com> 1.4-1
fa40b0
- whoa, 1.4.
fa40b0
fa40b0
* Sun May 26 2002 Tim Powers <timp@redhat.com>
fa40b0
- automated rebuild
fa40b0
fa40b0
* Thu May 16 2002 Bill Nottingham <notting@redhat.com>
fa40b0
- autoconf fun
fa40b0
fa40b0
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
fa40b0
- automated rebuild
fa40b0
fa40b0
* Tue Jan  1 2002 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 1.2.5.1
fa40b0
fa40b0
* Mon Jul 23 2001 Bill Nottingham <notting@redhat.com>
fa40b0
- don't explictly require krb5-libs, etc.; that's what find-requires is for
fa40b0
  (#49780, sort of)
fa40b0
fa40b0
* Sat Jul 21 2001 Tim Powers <timp@redhat.com>
fa40b0
- no more applnk entries, it's cluttering our menus
fa40b0
fa40b0
* Fri Jul 20 2001 Bill Nottingham <notting@redhat.com>
fa40b0
- add slang-devel to buildprereqs (#49531)
fa40b0
fa40b0
* Mon Jun 11 2001 Bill Nottingham <notting@redhat.com>
fa40b0
- add some sample color definitions (#19471)
fa40b0
fa40b0
* Thu May 24 2001 Bill Nottingham <notting@redhat.com>
fa40b0
- fix typo in muttrc.man (#41610)
fa40b0
fa40b0
* Mon May 14 2001 Bill Nottingham <notting@redhat.com>
fa40b0
- use mktemp in muttbug
fa40b0
fa40b0
* Wed May  2 2001 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- require webclient, not weclient
fa40b0
fa40b0
* Wed May  2 2001 Bill Nottingham <notting@redhat.com>
fa40b0
- build urlview here
fa40b0
fa40b0
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- rebuild in new environment
fa40b0
fa40b0
* Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
fa40b0
- change buildprereq to /usr/sbin/sendmail (it's what it should have been
fa40b0
  originally)
fa40b0
- %%langify
fa40b0
fa40b0
* Tue Feb 13 2001 Michael Stefaniuc <mstefani@redhat.com>
fa40b0
- changed buildprereq to smtpdaemon
fa40b0
fa40b0
* Tue Dec 19 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- rebuild; it's just broken
fa40b0
- fix #13196
fa40b0
- buildprereq sendmail
fa40b0
fa40b0
* Fri Dec 01 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- rebuild because of broken fileutils
fa40b0
fa40b0
* Fri Nov 10 2000 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- include a sample LDAP query script as a doc file
fa40b0
fa40b0
* Mon Nov  6 2000 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- patch for imap servers that like to volunteer information after AUTHENTICATE
fa40b0
fa40b0
* Thu Aug 24 2000 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- rebuild in new environment
fa40b0
- force flock() off and fcntl() on in case defaults change
fa40b0
fa40b0
* Tue Aug  8 2000 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- enable SSL support
fa40b0
fa40b0
* Fri Aug  4 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- add translation to desktop entry
fa40b0
fa40b0
* Fri Jul 28 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 1.2.5i - fixes IMAP bugs
fa40b0
fa40b0
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
fa40b0
- automatic rebuild
fa40b0
fa40b0
* Fri Jul  7 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- 1.2.4i
fa40b0
fa40b0
* Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- rebuild in new environment (release 3)
fa40b0
- adjust GSSAPI build logic
fa40b0
fa40b0
* Thu Jun 22 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- fix MD5 code
fa40b0
fa40b0
* Wed Jun 21 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 1.2.2i
fa40b0
fa40b0
* Mon Jun 19 2000 Trond Eivind Glomsrød <teg@redhat.com>
fa40b0
- use aspell
fa40b0
fa40b0
* Sat Jun 10 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- FHS fixes
fa40b0
fa40b0
* Wed May 10 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- add some files
fa40b0
fa40b0
* Tue May  9 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 1.2i
fa40b0
fa40b0
* Tue Apr  4 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- eliminate explicit krb5-configs dependency
fa40b0
fa40b0
* Wed Mar 22 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- auto<foo> is so much fun.
fa40b0
fa40b0
* Wed Mar 01 2000 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- make kerberos support conditional at compile-time
fa40b0
fa40b0
* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
fa40b0
- wmconfig -> desktop
fa40b0
fa40b0
* Fri Feb  4 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- keep the makefiles from re-running autoheader, automake, etc.
fa40b0
fa40b0
* Thu Feb  3 2000 Nalin Dahyabhai <nalin@redhat.com>
fa40b0
- add forward-ported sasl patch
fa40b0
fa40b0
* Thu Feb  3 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- handle compressed man pages, other cleanups
fa40b0
fa40b0
* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- 1.0.1
fa40b0
fa40b0
* Mon Jan  3 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- add the sample mime.types to /usr/doc
fa40b0
fa40b0
* Sat Jan  1 2000 Bill Nottingham <notting@redhat.com>
fa40b0
- fix an odd y2k issue on receiving mail from ancient clients
fa40b0
fa40b0
* Thu Oct 21 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- one-point-oh.
fa40b0
fa40b0
* Sat Sep 25 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- add a buffer overflow patch
fa40b0
fa40b0
* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 1.0pre2
fa40b0
fa40b0
* Tue Aug 17 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 0.95.7
fa40b0
- require urlview since the default muttrc uses it
fa40b0
fa40b0
* Mon Jun 21 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- get correct manual path the Right Way(tm)
fa40b0
- make it so it uses default colors even if COLORFGBG isn't set
fa40b0
fa40b0
* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 0.95.6
fa40b0
fa40b0
* Mon Apr 26 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- try and make sure $RPM_OPT_FLAGS gets passed through
fa40b0
fa40b0
* Fri Apr 23 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- update to 0.95.5
fa40b0
fa40b0
* Mon Mar 29 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- sed correct doc path into /etc/Muttrc for viewing manual
fa40b0
fa40b0
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
fa40b0
- auto rebuild in the new build environment (release 3)
fa40b0
fa40b0
* Thu Mar 18 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- strip binary
fa40b0
fa40b0
* Mon Mar  8 1999 Bill Nottingham <notting@redhat.com>
fa40b0
-  update to 0.95.4 - fixes a /tmp race
fa40b0
fa40b0
* Wed Feb 24 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- the RETURN OF WMCONFIG! Aiyeee!
fa40b0
fa40b0
* Fri Feb 12 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- 0.95.3 - fixes mailcap handling
fa40b0
fa40b0
* Mon Jan  4 1999 Bill Nottingham <notting@redhat.com>
fa40b0
- 0.95.1
fa40b0
fa40b0
* Sat Dec 12 1998 Bill Nottingham <notting@redhat.com>
fa40b0
- 0.95
fa40b0
fa40b0
* Fri Jul 31 1998 Bill Nottingham <notting@redhat.com>
fa40b0
- backport some 0.94.2 security fixes
fa40b0
- fix un-setgid
fa40b0
- update to 0.93.2
fa40b0
fa40b0
* Tue Jul 28 1998 Jeff Johnson <jbj@redhat.com>
fa40b0
- security fix
fa40b0
- update to 0.93.1.
fa40b0
- turn off setgid mail.
fa40b0
fa40b0
* Thu May 07 1998 Prospector System <bugs@redhat.com>
fa40b0
- translations modified for de, fr, tr
fa40b0
fa40b0
* Tue Apr 21 1998 Cristian Gafton <gafton@redhat.com>
fa40b0
- updated to 0.91.1
fa40b0
fa40b0
* Fri Apr 10 1998 Cristian Gafton <gafton@redhat.com>
fa40b0
- updated to mutt-0.89.1
fa40b0
fa40b0
* Thu Oct 16 1997 Otto Hammersmith <otto@redhat.com>
fa40b0
- Updated to mutt 0.85.
fa40b0
- added wmconfig entries.
fa40b0
- removed mime.types
fa40b0
fa40b0
* Mon Sep 1 1997 Donnie Barnes <djb@redhat.com>
fa40b0
- Rebuilt to insure all sources were fresh and patches were clean.
fa40b0
fa40b0
* Wed Aug 6 1997 Manoj Kasichainula <manojk@io.com>
fa40b0
- Initial version for 0.81(e)