Accepting request 956189 from home:dirkmueller:Factory

- udpate to 3.14:
  * TLS support rewritten from scratch
  ** New configuration statement: tls.handshake-timeout
  * Fix idle timeout handling (imap4d and pop3d daemons)
  * New function mu_mailbox_append_message_ext
  * mail utility
  ** new command: unread (U)
  ** message state is preserved when copying to another mailbox
  * Build requires GNU bison and flex
  * All parsers and scanners are rewritten in reentrant form
  * Support for mimetypes incorporated to the libmailutils library
  * Maildir and MH mailboxes
  ** Change the way of storing the envelope information
  ** Message scanner completely rewritten
  * Bugfixes
  ** Fix timezone calculation (see https://savannah.gnu.org/bugs/?61239)
  ** Fixed some memory and fd leaks
  ** Fixed corner case in mu_make_file_name_suf function

OBS-URL: https://build.opensuse.org/request/show/956189
OBS-URL: https://build.opensuse.org/package/show/server:mail/mailutils?expand=0&rev=49
This commit is contained in:
Dr. Werner Fink 2022-02-21 09:18:18 +00:00 committed by Git OBS Bridge
parent 623ee26fcd
commit 33d1dca7a6
6 changed files with 38 additions and 15 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d920971dcb49878a009911774fd6404f13d27bd101e2d59b664a28659a4094c7
size 3152892

View File

@ -1,7 +0,0 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iEYEABECAAYFAmELybwACgkQNgKwf1XQxzJ6AACcDwuP3ozkECo9ilZvuXZb6zGp
HAIAoKKRLWIfL9nAHa+54NCfG1zu+PpY
=FPKT
-----END PGP SIGNATURE-----

3
mailutils-3.14.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c0c5b38fea8b45a4afcd436487f2a76fd5525092d0378813a6eb5542c2127139
size 3215944

View File

@ -0,0 +1,7 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iEYEABECAAYFAmHRZ/kACgkQNgKwf1XQxzJcWgCfXchnkPJ/NvwbStrkIdwlJEeJ
mF8AoJzHvds3N7q8sDDqR+xeVPlK8pKm
=evp0
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,25 @@
-------------------------------------------------------------------
Sun Feb 20 22:11:59 UTC 2022 - Dirk Müller <dmueller@suse.com>
- udpate to 3.14:
* TLS support rewritten from scratch
** New configuration statement: tls.handshake-timeout
* Fix idle timeout handling (imap4d and pop3d daemons)
* New function mu_mailbox_append_message_ext
* mail utility
** new command: unread (U)
** message state is preserved when copying to another mailbox
* Build requires GNU bison and flex
* All parsers and scanners are rewritten in reentrant form
* Support for mimetypes incorporated to the libmailutils library
* Maildir and MH mailboxes
** Change the way of storing the envelope information
** Message scanner completely rewritten
* Bugfixes
** Fix timezone calculation (see https://savannah.gnu.org/bugs/?61239)
** Fixed some memory and fd leaks
** Fixed corner case in mu_make_file_name_suf function
-------------------------------------------------------------------
Fri Feb 18 11:02:46 UTC 2022 - Stefan Schubert <schubi@suse.de>

View File

@ -28,16 +28,16 @@
%bcond_with set_user_identity
%bcond_with guile_22
Name: mailutils
Version: 3.13
Version: 3.14
Release: 0
Summary: GNU Mailutils
License: GPL-3.0-or-later AND LGPL-3.0-or-later
Group: Productivity/Networking/Email/Clients
URL: https://mailutils.org/
Source: ftp://ftp.gnu.org/gnu/mailutils/%{name}-%{version}.tar.xz
Source: https://ftp.gnu.org/gnu/mailutils/%{name}-%{version}.tar.xz
Source1: %{name}-3.5-guile-2.0.tar.xz
Source2: %{name}-rpmlintrc
Source3: ftp://ftp.gnu.org/gnu/mailutils/%{name}-%{version}.tar.xz.sig
Source3: https://ftp.gnu.org/gnu/mailutils/%{name}-%{version}.tar.xz.sig
Source4: %{name}.keyring
Patch0: lisp-load-silent.patch
Patch2: silent-rpmlint-with_initgroups.patch
@ -389,7 +389,7 @@ EOF
--slave %{_bindir}/Mail Mail %{_bindir}/mu-mail \
--slave %{_mandir}/man1/mail.1%{?ext_man} mail.1%{?ext_man} %{_mandir}/man1/mu-mail.1%{?ext_man} \
--slave %{_mandir}/man1/Mail.1%{?ext_man} Mail.1%{?ext_man} %{_mandir}/man1/mu-mail.1%{?ext_man}
%endif
%endif
%if %{with set_user_identity}
%set_permissions %{_bindir}/dotlock
%set_permissions %{_sbindir}/maidag
@ -401,10 +401,11 @@ if test ! -e %{_bindir}/mu-mail; then
%{_sbindir}/update-alternatives --quiet --force --remove mail %{_bindir}/mu-mail
fi
%else
%pre
# removing old update-alternatives entries
if [ "$1" > 0 ] && [ -f %{_sbindir}/update-alternatives ] ; then
%{_sbindir}/update-alternatives --quiet --force --remove mail %{_bindir}/mu-mail
%{_sbindir}/update-alternatives --quiet --force --remove mail %{_bindir}/mu-mail
fi
%endif