Accepting request 908169 from home:stroeder:network

Update to 3.6.2

successfully tested on Tumbleweed x86_64

OBS-URL: https://build.opensuse.org/request/show/908169
OBS-URL: https://build.opensuse.org/package/show/server:mail/postfix?expand=0&rev=420
This commit is contained in:
Michael Ströder 2021-07-25 23:46:58 +00:00 committed by Git OBS Bridge
parent 41a8f9c788
commit 0cc48f6215
8 changed files with 109 additions and 12 deletions

View File

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

View File

@ -1,7 +0,0 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.18 (FreeBSD)
iFcDBQBgxlgfDAtZDoDKFacRCittAP9+D+UkM0n0bbBpaysrOyaZF6McXHsiumjv
TPpIioDhigD9FOT8ITAe/onYLyxfXlu3NN/Y7zT8sGagakJzmwgJie0=
=fZ9u
-----END PGP SIGNATURE-----

3
postfix-3.6.2.tar.gz Normal file
View File

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

7
postfix-3.6.2.tar.gz.asc Normal file
View File

@ -0,0 +1,7 @@
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.18 (FreeBSD)
iFcDBQBg/KW0DAtZDoDKFacRCv6ZAP93+1Bi+iPb24MFzjxHAuT0VjvNpYxgKPrp
GRhhUcs8tAD/Y0ghKWq8Ra8Gk9UHePI0PwD8jqCbt4m3mWAIfyqKh7w=
=e01E
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,63 @@
-------------------------------------------------------------------
Sun Jul 25 23:22:23 UTC 2021 - Michael Ströder <michael@stroeder.com>
- Update to 3.6.2
* In Postfix 3.6, fixed a false "Result too large" (ERANGE) fatal
error in the compatibility_level parser, because there was no
'errno = 0' statement before an strtol() call.
* (problem introduced in Postfix 3.3) "Null pointer read" error
in the cleanup daemon when "header_from_format = standard" (the
default as of Postfix 3.3), and email was submitted with
/usr/sbin/sendmail without From: header, and an all-space full
name was specified in 1) the password file, 2) with "sendmail
-F", or 3) with the NAME environment variable. Found by Renaud
Metrich.
* (problem introduced in Postfix 2.4) False "too many reverse
jump" warnings in the showq daemon, because loop detection code
was comparing memory addresses instead of queue file names.
Reported by Mehmet Avcioglu.
* (problem introduced in 1999) The Postfix SMTP server was sending
all session transcripts to the error_notice_recipient (default:
postmaster), instead of sending transcripts of bounced mail to
the bounce_notice_recipient (default: postmaster). Reported by
Hans van Zijst.
* The texthash: map implementation broke tls_server_sni_maps,
because it did not support multi-file inputs. Reported by
Christopher Gurnee, who also found an instance of the missing
code in the "postmap -F" source code. File: util/dict_thash.c.
-------------------------------------------------------------------
Wed Jul 14 14:37:24 UTC 2021 - Peter Varkoly <varkoly@suse.com>
- spamd wants to start before mail-transfer-agent.target, but that target doesn't exist
(bsc#1066854)
-------------------------------------------------------------------
Tue Jul 6 22:23:17 UTC 2021 - Christian Wittmer <chris@computersalat.de>
- postfix-SUSE
* rework sysconfig.postfix, add
- POSTFIX_WITH_DKIM
- POSTFIX_DKIM_CONN
* rework config.postfix for main.cf
- with_dkim
- update postfix-main.cf.patch
* add OpenDKIM settings
-------------------------------------------------------------------
Wed Jun 23 22:28:52 UTC 2021 - Christian Wittmer <chris@computersalat.de>
- postfix-mysql
* add mysql_relay_recipient_maps.cf
- postfix-SUSE
* rework sysconfig.postfix, add
- POSTFIX_RELAY_RECIPIENTS
- POSTFIX_BACKUPMX
* add relay_recipients
* rework config.postfix for main.cf
- is_backupmx
- relay_recipient_maps
-------------------------------------------------------------------
Fri Jun 18 17:11:05 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
@ -17,6 +77,15 @@ Mon Jun 14 15:46:54 UTC 2021 - Michael Ströder <michael@stroeder.com>
* Typo (introduced: Postfix 3.4): silent_discard should be
silent-discard in BDAT_README.
-------------------------------------------------------------------
Sun Jun 6 12:51:35 UTC 2021 - Christian Wittmer <chris@computersalat.de>
- fix postfix-master.cf.patch
* set correct indentation (again) for options of
- submission (needs 3 spaces)
- smtps (needs 4 spaces)
to make config.postfix work nicely again
-------------------------------------------------------------------
Wed Jun 2 00:26:36 UTC 2021 - Marcus Rueckert <mrueckert@suse.de>

View File

@ -56,7 +56,7 @@
%endif
%bcond_without ldap
Name: postfix-bdb
Version: 3.6.1
Version: 3.6.2
Release: 0
Summary: A fast, secure, and flexible mailer
License: IPL-1.0 OR EPL-2.0

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Sun Jul 25 23:22:23 UTC 2021 - Michael Ströder <michael@stroeder.com>
- Update to 3.6.2
* In Postfix 3.6, fixed a false "Result too large" (ERANGE) fatal
error in the compatibility_level parser, because there was no
'errno = 0' statement before an strtol() call.
* (problem introduced in Postfix 3.3) "Null pointer read" error
in the cleanup daemon when "header_from_format = standard" (the
default as of Postfix 3.3), and email was submitted with
/usr/sbin/sendmail without From: header, and an all-space full
name was specified in 1) the password file, 2) with "sendmail
-F", or 3) with the NAME environment variable. Found by Renaud
Metrich.
* (problem introduced in Postfix 2.4) False "too many reverse
jump" warnings in the showq daemon, because loop detection code
was comparing memory addresses instead of queue file names.
Reported by Mehmet Avcioglu.
* (problem introduced in 1999) The Postfix SMTP server was sending
all session transcripts to the error_notice_recipient (default:
postmaster), instead of sending transcripts of bounced mail to
the bounce_notice_recipient (default: postmaster). Reported by
Hans van Zijst.
* The texthash: map implementation broke tls_server_sni_maps,
because it did not support multi-file inputs. Reported by
Christopher Gurnee, who also found an instance of the missing
code in the "postmap -F" source code. File: util/dict_thash.c.
-------------------------------------------------------------------
Wed Jul 14 14:37:24 UTC 2021 - Peter Varkoly <varkoly@suse.com>

View File

@ -42,7 +42,7 @@
%bcond_without libnsl
%bcond_without ldap
Name: postfix
Version: 3.6.1
Version: 3.6.2
Release: 0
Summary: A fast, secure, and flexible mailer
License: IPL-1.0 OR EPL-2.0