import postfix-3.5.8-4.el8
This commit is contained in:
parent
d3b8943eff
commit
73efd970f0
18
SOURCES/pflogsumm-1.1.5-syslog-name-underscore-fix.patch
Normal file
18
SOURCES/pflogsumm-1.1.5-syslog-name-underscore-fix.patch
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
diff --git a/pflogsumm-1.1.5/pflogsumm.pl b/pflogsumm-1.1.5/pflogsumm.pl
|
||||||
|
index eb527d0..7e26206 100755
|
||||||
|
--- a/pflogsumm-1.1.5/pflogsumm.pl
|
||||||
|
+++ b/pflogsumm-1.1.5/pflogsumm.pl
|
||||||
|
@@ -503,7 +503,12 @@ $usageMsg =
|
||||||
|
# Accept either "_"s or "-"s in --switches
|
||||||
|
foreach (@ARGV) {
|
||||||
|
last if($_ eq "--");
|
||||||
|
- tr/_/-/ if(/^--\w/);
|
||||||
|
+ if (/^--\w/)
|
||||||
|
+ {
|
||||||
|
+ my @argspl = split("=", $_, 2);
|
||||||
|
+ $argspl[0] =~ tr/_/-/;
|
||||||
|
+ $_ = join("=", @argspl);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
|
||||||
|
# Some pre-inits for convenience
|
@ -11,6 +11,7 @@ PrivateTmp=true
|
|||||||
CapabilityBoundingSet=~ CAP_NET_ADMIN CAP_SYS_ADMIN CAP_SYS_BOOT CAP_SYS_MODULE
|
CapabilityBoundingSet=~ CAP_NET_ADMIN CAP_SYS_ADMIN CAP_SYS_BOOT CAP_SYS_MODULE
|
||||||
ProtectSystem=true
|
ProtectSystem=true
|
||||||
PrivateDevices=true
|
PrivateDevices=true
|
||||||
|
ExecStartPre=-/usr/sbin/restorecon -R /var/spool/postfix/pid/master.pid
|
||||||
ExecStartPre=-/usr/libexec/postfix/aliasesdb
|
ExecStartPre=-/usr/libexec/postfix/aliasesdb
|
||||||
ExecStartPre=-/usr/libexec/postfix/chroot-update
|
ExecStartPre=-/usr/libexec/postfix/chroot-update
|
||||||
ExecStart=/usr/sbin/postfix start
|
ExecStart=/usr/sbin/postfix start
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
Name: postfix
|
Name: postfix
|
||||||
Summary: Postfix Mail Transport Agent
|
Summary: Postfix Mail Transport Agent
|
||||||
Version: 3.5.8
|
Version: 3.5.8
|
||||||
Release: 2%{?dist}
|
Release: 4%{?dist}
|
||||||
Epoch: 2
|
Epoch: 2
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
URL: http://www.postfix.org
|
URL: http://www.postfix.org
|
||||||
@ -64,7 +64,10 @@ Requires(preun): %{_sbindir}/alternatives
|
|||||||
Requires(preun): systemd
|
Requires(preun): systemd
|
||||||
Requires(postun): systemd
|
Requires(postun): systemd
|
||||||
# Required by /usr/libexec/postfix/postfix-script
|
# Required by /usr/libexec/postfix/postfix-script
|
||||||
Requires: diffutils, findutils
|
Requires: diffutils
|
||||||
|
Requires: findutils
|
||||||
|
# for restorecon
|
||||||
|
Requires: policycoreutils
|
||||||
Provides: MTA smtpd smtpdaemon server(smtp)
|
Provides: MTA smtpd smtpdaemon server(smtp)
|
||||||
|
|
||||||
Source0: ftp://ftp.porcupine.org/mirrors/postfix-release/official/%{name}-%{version}.tar.gz
|
Source0: ftp://ftp.porcupine.org/mirrors/postfix-release/official/%{name}-%{version}.tar.gz
|
||||||
@ -98,6 +101,8 @@ Patch10: pflogsumm-1.1.5-ipv6-warnings-fix.patch
|
|||||||
Patch11: postfix-3.4.4-chroot-example-fix.patch
|
Patch11: postfix-3.4.4-chroot-example-fix.patch
|
||||||
Patch12: postfix-3.5.8-back-compat-3.3.1.patch
|
Patch12: postfix-3.5.8-back-compat-3.3.1.patch
|
||||||
Patch13: postfix-3.5.8-whitespace-name-fix.patch
|
Patch13: postfix-3.5.8-whitespace-name-fix.patch
|
||||||
|
# rhbz#1931403, sent upstream
|
||||||
|
Patch14: pflogsumm-1.1.5-syslog-name-underscore-fix.patch
|
||||||
|
|
||||||
# Optional patches - set the appropriate environment variables to include
|
# Optional patches - set the appropriate environment variables to include
|
||||||
# them when building the package/spec file
|
# them when building the package/spec file
|
||||||
@ -238,6 +243,7 @@ popd
|
|||||||
%patch12 -p1 -b .back-compat-3.3.1
|
%patch12 -p1 -b .back-compat-3.3.1
|
||||||
# rhbz#1977732, sent upstream
|
# rhbz#1977732, sent upstream
|
||||||
%patch13 -p1 -b .whitespace-name-fix
|
%patch13 -p1 -b .whitespace-name-fix
|
||||||
|
%patch14 -p1 -b .pflogsumm-1.1.5-syslog-name-underscore-fix
|
||||||
|
|
||||||
for f in README_FILES/TLS_{LEGACY_,}README TLS_ACKNOWLEDGEMENTS; do
|
for f in README_FILES/TLS_{LEGACY_,}README TLS_ACKNOWLEDGEMENTS; do
|
||||||
iconv -f iso8859-1 -t utf8 -o ${f}{_,} &&
|
iconv -f iso8859-1 -t utf8 -o ${f}{_,} &&
|
||||||
@ -751,6 +757,14 @@ exit 0
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 17 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 2:3.5.8-4
|
||||||
|
- Added SELinux workound for systemd service to work after 'postfix start'
|
||||||
|
Resolves: rhbz#2028015
|
||||||
|
|
||||||
|
* Mon Jan 17 2022 Jaroslav Škarvada <jskarvad@redhat.com> - 2:3.5.8-3
|
||||||
|
- Fixed pflogsumm to allow underscores in the syslog_name
|
||||||
|
Resolves: rhbz#1931403
|
||||||
|
|
||||||
* Thu Aug 5 2021 Jaroslav Škarvada <jskarvad@redhat.com> - 2:3.5.8-2
|
* Thu Aug 5 2021 Jaroslav Škarvada <jskarvad@redhat.com> - 2:3.5.8-2
|
||||||
- Fixed cleanup crash when processing messages with whitespace only fullname
|
- Fixed cleanup crash when processing messages with whitespace only fullname
|
||||||
Resolves: rhbz#1977732
|
Resolves: rhbz#1977732
|
||||||
|
Loading…
Reference in New Issue
Block a user