forked from pool/postfix
Accepting request 1009796 from server:mail
OBS-URL: https://build.opensuse.org/request/show/1009796 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/postfix?expand=0&rev=219
This commit is contained in:
commit
d07dcc51f5
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3785f76c2924a02873c0be0f0cd124a9166fc1aaf77ea2a06bd4ad795a6ed416
|
||||
size 4824424
|
@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0.18 (FreeBSD)
|
||||
|
||||
iFcDBQBiadThDAtZDoDKFacRCuR0AP4th9V6OYU18z1g/1Rfi+gROQoPiUyAvRqs
|
||||
WV756HhTGAD/eVwqnEQFRTK213FatKH23LZa5jenMkx7n1esqsubGpw=
|
||||
=Bpdm
|
||||
-----END PGP SIGNATURE-----
|
3
postfix-3.7.3.tar.gz
Normal file
3
postfix-3.7.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d22f3d37ef75613d5d573b56fc51ef097f2c0d0b0e407923711f71c1fb72911b
|
||||
size 4825380
|
7
postfix-3.7.3.tar.gz.asc
Normal file
7
postfix-3.7.3.tar.gz.asc
Normal file
@ -0,0 +1,7 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v2.0.18 (FreeBSD)
|
||||
|
||||
iFcDBQBjQKxEDAtZDoDKFacRCnU6APwI1eWviqhWfHGeA3GdG8TiuXfiBTll5q+e
|
||||
Zq3cdSf4GAD/TMKLnv1XLzvVY4hm8r+D9TwrhVrWDubm7cNjMCfbl/Q=
|
||||
=T+nU
|
||||
-----END PGP SIGNATURE-----
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 9 12:00:55 UTC 2022 - Michael Ströder <michael@stroeder.com>
|
||||
|
||||
- update to 3.7.3
|
||||
* Fixed a bug where some messages were not delivered after
|
||||
"warning: Unexpected record type 'X'.
|
||||
* Workaround: in a TLS server disable Postfix's 1-element internal session
|
||||
cache, to work around an OpenSSL 3.0 regression that broke TLS handshakes.
|
||||
* Code health: the fix for milter_header_checks (3.7.1, 3.6.6, 3.5.16, 3.4.26)
|
||||
introduced a missing msg_panic() argument (in code that never executes).
|
||||
* Code health: Postfix 3.3.0 introduced an uninitialized verify_append()
|
||||
request status in case of a null original recipient address.
|
||||
* Postfix 3.5.0 introduced debug logging noise in map_search_create().
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 6 09:17:20 UTC 2022 - Ludwig Nussel <lnussel@suse.de>
|
||||
|
||||
- own /var/spool/mail (boo#1179574)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 4 19:09:34 UTC 2022 - chris@computersalat.de
|
||||
|
||||
|
@ -56,7 +56,7 @@
|
||||
%endif
|
||||
%bcond_without ldap
|
||||
Name: postfix-bdb
|
||||
Version: 3.7.2
|
||||
Version: 3.7.3
|
||||
Release: 0
|
||||
Summary: A fast, secure, and flexible mailer
|
||||
License: IPL-1.0 OR EPL-2.0
|
||||
@ -274,6 +274,8 @@ mkdir -p %{buildroot}/%{pf_sample_directory}
|
||||
mkdir -p %{buildroot}/%{pf_html_directory}
|
||||
mkdir -p %{buildroot}%{_includedir}/postfix
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/pam.d
|
||||
mkdir -p %{buildroot}/var/spool/mail
|
||||
ln -s spool/mail %{buildroot}/var/mail
|
||||
install -m 644 postfix-SUSE/smtp %{buildroot}%{_sysconfdir}/pam.d/smtp
|
||||
mkdir -p %{buildroot}%{_fillupdir}
|
||||
sed -e 's;@lib@;%{_lib};g' postfix-SUSE/sysconfig.postfix > %{buildroot}%{_fillupdir}/sysconfig.postfix
|
||||
@ -551,6 +553,8 @@ fi
|
||||
%if 0%{?suse_version} >= 1330
|
||||
%{_sysusersdir}/postfix-user.conf
|
||||
%endif
|
||||
%dir %attr(1777,root,root) /var/spool/mail
|
||||
/var/mail
|
||||
|
||||
%if %{with lmdb}
|
||||
%files lmdb
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 9 12:00:55 UTC 2022 - Michael Ströder <michael@stroeder.com>
|
||||
|
||||
- update to 3.7.3
|
||||
* Fixed a bug where some messages were not delivered after
|
||||
"warning: Unexpected record type 'X'.
|
||||
* Workaround: in a TLS server disable Postfix's 1-element internal session
|
||||
cache, to work around an OpenSSL 3.0 regression that broke TLS handshakes.
|
||||
* Code health: the fix for milter_header_checks (3.7.1, 3.6.6, 3.5.16, 3.4.26)
|
||||
introduced a missing msg_panic() argument (in code that never executes).
|
||||
* Code health: Postfix 3.3.0 introduced an uninitialized verify_append()
|
||||
request status in case of a null original recipient address.
|
||||
* Postfix 3.5.0 introduced debug logging noise in map_search_create().
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 6 09:17:20 UTC 2022 - Ludwig Nussel <lnussel@suse.de>
|
||||
|
||||
- own /var/spool/mail (boo#1179574)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 4 19:09:34 UTC 2022 - chris@computersalat.de
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
||||
%bcond_without libnsl
|
||||
%bcond_without ldap
|
||||
Name: postfix
|
||||
Version: 3.7.2
|
||||
Version: 3.7.3
|
||||
Release: 0
|
||||
Summary: A fast, secure, and flexible mailer
|
||||
License: IPL-1.0 OR EPL-2.0
|
||||
@ -289,6 +289,8 @@ mkdir -p %{buildroot}/%{pf_sample_directory}
|
||||
mkdir -p %{buildroot}/%{pf_html_directory}
|
||||
mkdir -p %{buildroot}%{_includedir}/%{name}
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/pam.d
|
||||
mkdir -p %{buildroot}/var/spool/mail
|
||||
ln -s spool/mail %{buildroot}/var/mail
|
||||
install -pm 0644 %{name}-SUSE/smtp %{buildroot}%{_sysconfdir}/pam.d/smtp
|
||||
mkdir -p %{buildroot}%{_fillupdir}
|
||||
sed -e 's;@lib@;%{_lib};g' %{name}-SUSE/sysconfig.%{name} > %{buildroot}%{_fillupdir}/sysconfig.%{name}
|
||||
@ -587,6 +589,8 @@ fi
|
||||
%dir %attr(0730,%{name},maildrop) /%{pf_queue_directory}/maildrop
|
||||
%dir %attr(0710,%{name},maildrop) /%{pf_queue_directory}/public
|
||||
%{_sysusersdir}/postfix-user.conf
|
||||
%dir %attr(1777,root,root) /var/spool/mail
|
||||
/var/mail
|
||||
|
||||
%files devel
|
||||
%{_includedir}/%{name}/
|
||||
|
Loading…
Reference in New Issue
Block a user