Accepting request 720734 from server:mail

OBS-URL: https://build.opensuse.org/request/show/720734
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/msmtp?expand=0&rev=45
This commit is contained in:
Dominique Leuenberger 2019-08-05 08:41:33 +00:00 committed by Git OBS Bridge
commit 0ca7f12dae
6 changed files with 16 additions and 6 deletions

View File

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

Binary file not shown.

3
msmtp-1.8.5.tar.xz Normal file
View File

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

BIN
msmtp-1.8.5.tar.xz.sig Normal file

Binary file not shown.

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Fri Jul 12 18:22:21 UTC 2019 - Benoît Monin <benoit.monin@gmx.fr>
- update to version 1.8.5:
* Fixed OAUTHBEARER.
* Support for TLS client certificates via PKCS11 devices, e.g.
smart cards.
* Various small bug fixes and improvements.
- fix sh scripts shebang, in addition to bash scripts
-------------------------------------------------------------------
Wed Apr 24 18:48:28 UTC 2019 - Benoît Monin <benoit.monin@gmx.fr>

View File

@ -17,7 +17,7 @@
Name: msmtp
Version: 1.8.4
Version: 1.8.5
Release: 0
BuildRequires: gnutls-devel
BuildRequires: libidn2-devel
@ -97,13 +97,13 @@ a minimalistic replacement of sendmail.
%prep
%setup -q
# fix bash scripts shebang while preserving mtime
# fix bash and sh scripts shebang while preserving mtime
for i in scripts/msmtpqueue/*.sh \
scripts/msmtpq/msmtpq \
scripts/msmtpq/msmtp-queue \
scripts/set_sendmail/*.sh \
scripts/find_alias/*.sh; do
sed '1 s|#!/usr/bin/env bash|#!/bin/bash|' $i > $i.new
sed '1 s|#!/usr/bin/env \(.*\)|#!/bin/\1|' $i > $i.new
touch -r $i $i.new
mv $i.new $i
done