diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-12-21 17:04:54 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-12-21 18:15:03 +0000 |
commit | bb0c9e1db42d06a65aaf639020f4632ca7d1d01c (patch) | |
tree | 2cf1139015b8e63d2e6f779caa20e7ccfc676151 /mail-filter/postgrey | |
parent | dev-python/rq: remove unused patch(es) (diff) | |
download | gentoo-bb0c9e1db42d06a65aaf639020f4632ca7d1d01c.tar.gz gentoo-bb0c9e1db42d06a65aaf639020f4632ca7d1d01c.tar.bz2 gentoo-bb0c9e1db42d06a65aaf639020f4632ca7d1d01c.zip |
mail-filter/postgrey: remove unused patch
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mail-filter/postgrey')
-rw-r--r-- | mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch b/mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch deleted file mode 100644 index 615c6e5b77d1..000000000000 --- a/mail-filter/postgrey/files/postgrey-1.34-perl-5.18.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 9673b54064691a5b9c295ffea340d8a1f9ee1cb8 Mon Sep 17 00:00:00 2001 -From: Yasuhiro KIMURA <yasu@utahime.org> -Date: Sat, 17 Aug 2013 22:05:27 +0900 -Subject: [PATCH] Make postgrey work with Perl 5.18 - ---- - postgrey | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -diff --git a/postgrey b/postgrey -index 7cb0352..37f69bd 100755 ---- a/postgrey -+++ b/postgrey -@@ -557,6 +557,16 @@ sub main() - if($opt{dbdir}) { - $opt{dbdir} =~ /^(.*)$/; $opt{dbdir} = $1; - } -+ # untaint what is given on --pidfile. It is not security sensitive since -+ # it is provided by the admin -+ if($opt{pidfile}) { -+ $opt{pidfile} =~ /^(.*)$/; $opt{pidfile} = $1; -+ } -+ # untaint what is given on --inet. It is not security sensitive since -+ # it is provided by the admin -+ if($opt{inet}) { -+ $opt{inet} =~ /^(.*)$/; $opt{inet} = $1; -+ } - - # determine proper "logsock" for Sys::Syslog - my $syslog_logsock; --- -2.0.3 - |