SHA256
1
0
forked from pool/msmtp
OBS User unknown 2008-09-07 23:34:13 +00:00 committed by Git OBS Bridge
parent c36879e850
commit 2ea921e589
5 changed files with 95 additions and 24 deletions

View File

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

3
msmtp-1.4.16.tar.bz2 Normal file
View File

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

View File

@ -1,12 +0,0 @@
--- scripts/msmtpqueue/msmtp-runqueue.sh
+++ scripts/msmtpqueue/msmtp-runqueue.sh
@@ -36,8 +36,8 @@
# process all mails
for MAILFILE in *.mail; do
- echo "*** Sending $MAILFILE to `sed -e 's/^.*-- \(.*$\)/\1/' $MSMTPFILE` ..."
MSMTPFILE="`echo $MAILFILE | sed -e 's/mail/msmtp/'`"
+ echo "*** Sending $MAILFILE to `sed -e 's/^.*-- \(.*$\)/\1/' $MSMTPFILE` ..."
if [ ! -f "$MSMTPFILE" ]; then
echo "No corresponding file $MSMTPFILE found"
echo "FAILURE"

View File

@ -1,3 +1,40 @@
-------------------------------------------------------------------
Sat Sep 6 18:32:26 CEST 2008 - mrueckert@suse.de
- update to version 1.4.16
- Changed all scripts to '#!/usr/bin/env bash' instead of
'#!/bin/sh' or '#!/bin/bash', because they use bash features
that are not available in POSIX /bin/sh and because bash might
not live in /bin, e.g. on BSD systems. This is a quick fix for
Debian bug #489635.
- Accept both 250 and 251 in return of the RCPT TO command, as
required by RFC 2821 sections 4.3.2 and 3.4. Reported and fixed
by Matthias Bernhardt. Thanks!
- Fix scripts/msmtpqueue/msmtp-runqueue.sh. An error made while
applying a patch accidently broke it. Reported by Thomas Weber.
Thanks!
(this obsoletes msmtp-runqueue.sh.patch)
- additional changes from version 1.4.15
- Added the new tls_crl_file configuration command and the
corresponding --tls-crl-file option.
- Added the new tls_min_dh_prime_bits configuration command and
the corresponding --tls-min-dh-prime-bits option. This closes
Debian bug #440344.
- Added the new tls_priorities configuration command and the
corresponding --tls-priorities option.
- Gnulib upate to 2008-06-02. Use getpass-gnu instead of getpass
module.
- Add msmtpq scripts by Chris Gianniotis to the scripts
directory. Suggest them as a replacement in the README of the
msmtpqueue scripts.
- Do not let getpass() read from stdin, because we read the mail
from there. Reported by Karol Lewandowski. Thanks!
- Updated the set_sendmail script by Gautam Iyer. Thanks!
- Return EX_TEMPFAIL instead of EX_DATAERR in case of 4xx
replies to the MAIL FROM, RCPT TO and DATA commands. Reported
by Kent Vinther Friis. Thanks!
- install msmtpq
-------------------------------------------------------------------
Wed May 7 11:37:36 CEST 2008 - cthiel@suse.de

View File

@ -1,10 +1,17 @@
#
# spec file for package msmtp (Version 1.4.14)
# spec file for package msmtp (Version 1.4.16)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
@ -12,8 +19,8 @@
Name: msmtp
Version: 1.4.14
Release: 8
Version: 1.4.16
Release: 1
#
License: GPL v3 or later
Group: Productivity/Networking/Email/Utilities
@ -26,7 +33,6 @@ PreReq: %install_info_prereq
#
Url: http://msmtp.sourceforge.net/
Source: http://prdownloads.sourceforge.net/msmtp/msmtp-%{version}.tar.bz2
Patch: msmtp-runqueue.sh.patch
#
Summary: An SMTP Client
@ -43,7 +49,6 @@ Authors:
%prep
%setup -q
%patch
%build
%if 0%{?suse_version} > 1000
@ -58,7 +63,11 @@ export CFLAGS="%{optflags} -fstack-protector"
for i in README ChangeLog ; do
%{__cp} scripts/msmtpqueue/$i ${i}.msmtpqueue
done
%{__install} -D -m 0755 scripts/msmtpqueue/*.sh scripts/set_sendmail.sh \
%{__cp} scripts/msmtpq/README README.msmtpq
%{__install} -m 0755 \
scripts/msmtpqueue/*.sh \
scripts/msmtpq/msmtp{q,Q} \
scripts/set_sendmail/set_sendmail.sh \
%{buildroot}%{_bindir}
%clean
@ -74,9 +83,12 @@ done
%files -f %{name}.lang
%defattr (-, root, root)
%doc AUTHORS ChangeLog* COPYING NEWS README README.msmtpqueue THANKS
%doc AUTHORS ChangeLog* COPYING NEWS README README.msmtpqueue README.msmtpq THANKS
%doc doc/msmtp.html doc/Mutt+msmtp.txt doc/*.example
%doc scripts/set_sendmail/set_sendmail.conf
%{_bindir}/msmtp
%{_bindir}/msmtpq
%{_bindir}/msmtpQ
%{_bindir}/msmtp-enqueue.sh
%{_bindir}/msmtp-runqueue.sh
%{_bindir}/msmtp-listqueue.sh
@ -85,6 +97,40 @@ done
%{_infodir}/msmtp.info*
%changelog
* Sat Sep 06 2008 mrueckert@suse.de
- update to version 1.4.16
- Changed all scripts to '#!/usr/bin/env bash' instead of
'#!/bin/sh' or '#!/bin/bash', because they use bash features
that are not available in POSIX /bin/sh and because bash might
not live in /bin, e.g. on BSD systems. This is a quick fix for
Debian bug #489635.
- Accept both 250 and 251 in return of the RCPT TO command, as
required by RFC 2821 sections 4.3.2 and 3.4. Reported and fixed
by Matthias Bernhardt. Thanks!
- Fix scripts/msmtpqueue/msmtp-runqueue.sh. An error made while
applying a patch accidently broke it. Reported by Thomas Weber.
Thanks!
(this obsoletes msmtp-runqueue.sh.patch)
- additional changes from version 1.4.15
- Added the new tls_crl_file configuration command and the
corresponding --tls-crl-file option.
- Added the new tls_min_dh_prime_bits configuration command and
the corresponding --tls-min-dh-prime-bits option. This closes
Debian bug #440344.
- Added the new tls_priorities configuration command and the
corresponding --tls-priorities option.
- Gnulib upate to 2008-06-02. Use getpass-gnu instead of getpass
module.
- Add msmtpq scripts by Chris Gianniotis to the scripts
directory. Suggest them as a replacement in the README of the
msmtpqueue scripts.
- Do not let getpass() read from stdin, because we read the mail
from there. Reported by Karol Lewandowski. Thanks!
- Updated the set_sendmail script by Gautam Iyer. Thanks!
- Return EX_TEMPFAIL instead of EX_DATAERR in case of 4xx
replies to the MAIL FROM, RCPT TO and DATA commands. Reported
by Kent Vinther Friis. Thanks!
- install msmtpq
* Wed May 07 2008 cthiel@suse.de
- fix msmtp-runqueue.sh
* Tue Mar 18 2008 mrueckert@suse.de