Update to mailutils-3.5

OBS-URL: https://build.opensuse.org/package/show/server:mail/mailutils?expand=0&rev=14
This commit is contained in:
Dr. Werner Fink 2018-10-30 10:48:18 +00:00 committed by Git OBS Bridge
parent 5e1380d4f6
commit 0dcffde1d4
5 changed files with 42 additions and 21 deletions

View File

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

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

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

View File

@ -1,3 +1,39 @@
-------------------------------------------------------------------
Tue Oct 30 10:40:54 UTC 2018 - Dr. Werner Fink <werner@suse.de>
- Update to mailutils 3.5
* Support for Guile version 2.2.0 and later
Support for prior versions has been withdrawn.
* New scheme functions
+ mu-encoder-port port name . args
+ mu-decoder-port port name . args
+ mu-header-decode hdr [charset]
+ mu-header-encode hdr [encoding [charset]]
* Introduced support for Python 3.x
* Define sieve variables from the command line
The sieve utility now allows you to supply initial values for
RFC 5229 variables using the --variable command line option, e.g.
sieve --variable mailbox=outgoing
* Support for Berkeley DB versions 5 and 6
* headline variable in the mail utility
The new %D specifier has been implemented, which allows the user to
supply arbitrary strftime(3) format string for outputting message
date/time. E.g.:
set headline="%4m %20D{%Y-%m-%dT%H:%M:%S} %18f %s"
In simplified form, %D can be followed by a single time format
specifier. E.g. %DH can be used instead of %D{%H}.
* Bugfixes
+ Fix alignment specifiers in the headline variable (mail utility)
+ Fix eventual segmentation violation in imap4d
It occurred when a recently started subprocess received a termination
signal before initializing its I/O subsystem. Most often this happens
when the master process is being shut down.
+ Fix endianness bug in string to IP conversion
+ Force terminating null character in the output of mh_format
+ Fix bug in base64 encoder - don't return immediately upon receiving eof
+ Fix command expansion in wordsplit
- Remove patch mimeview_lexer_format-security.patch now upstream
-------------------------------------------------------------------
Fri Aug 3 09:45:20 UTC 2018 - werner@suse.de

View File

@ -23,16 +23,15 @@
%define somajor 5
Name: mailutils
Version: 3.4
Version: 3.5
Release: 0
Summary: GNU Mailutils
License: LGPL-3.0-or-later AND GPL-3.0-or-later
Group: Productivity/Networking/Email/Clients
Url: https://mailutils.org/
Source: ftp://ftp.gnu.org/gnu/mailutils/mailutils-3.4.tar.xz
Source1: mailutils-rpmlintrc
Source: ftp://ftp.gnu.org/gnu/mailutils/%{name}-%{version}.tar.xz
Source1: %{name}-rpmlintrc
Patch0: lisp-load-silent.patch
Patch1: mimeview_lexer_format-security.patch
Patch2: silent-rpmlint-with_initgroups.patch
BuildRequires: bison
BuildRequires: cpio
@ -171,7 +170,6 @@ implementations: UNIX mailbox, Maildir, MH, POP3, IMAP4, even SMTP.
%prep
%setup -q
%patch0
%patch1 -p1
%patch2
#
# Avoid build require for emacs as emacs does

View File

@ -1,13 +0,0 @@
Index: mailutils/mimeview/lexer.l
===================================================================
--- mailutils.orig/mimeview/lexer.l
+++ mailutils/mimeview/lexer.l
@@ -277,7 +277,7 @@ mimetypes_close ()
int
yyerror (char *s)
{
- mu_error (s);
+ mu_error ("%s", s);
return 0;
}