diff options
Diffstat (limited to 'mail/p5-Mail-SpamAssassin/files')
-rw-r--r-- | mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw | 19 | ||||
-rw-r--r-- | mail/p5-Mail-SpamAssassin/files/patch-spamd_spamd.raw | 22 |
2 files changed, 0 insertions, 41 deletions
diff --git a/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw b/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw deleted file mode 100644 index 212605a90ac9..000000000000 --- a/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw +++ /dev/null @@ -1,19 +0,0 @@ ---- sa-learn.raw~ Fri Aug 27 18:37:32 2004 -+++ sa-learn.raw Wed Sep 22 18:02:48 2004 -@@ -106,6 +106,7 @@ - 'local|L' => \$opt{'local'}, - 'no-sync|nosync' => \$opt{'nosync'}, - 'showdots' => \$opt{'showdots'}, -+ 'quiet' => \$opt{'quiet'}, - 'use-ignores' => \$opt{'use-ignores'}, - 'no-rebuild|norebuild' => sub { $opt{'nosync'} = 1; warn "The --no-rebuild option has been deprecated. Please use --no-sync instead.\n" }, - -@@ -384,7 +385,7 @@ - - print STDERR "\n" if ( $opt{showdots} ); - print --"Learned from $learnedcount message(s) ($messagecount message(s) examined).\n"; -+"Learned from $learnedcount message(s) ($messagecount message(s) examined).\n" unless $opt{quiet}; - - # If we needed to make a tempfile, go delete it. - if ( defined $tempfile ) { diff --git a/mail/p5-Mail-SpamAssassin/files/patch-spamd_spamd.raw b/mail/p5-Mail-SpamAssassin/files/patch-spamd_spamd.raw deleted file mode 100644 index db6f4a60ecda..000000000000 --- a/mail/p5-Mail-SpamAssassin/files/patch-spamd_spamd.raw +++ /dev/null @@ -1,22 +0,0 @@ ---- spamd/spamd.raw.orig Fri May 6 20:16:50 2005 -+++ spamd/spamd.raw Fri May 6 20:17:30 2005 -@@ -881,12 +881,14 @@ - } - - # if we changed UID during processing, change back! -- if ( $> != $< and $> != ( $< - 2**32 ) ) { -- $) = "$( $("; # change eGID -- $> = $<; # change eUID -+ if($setuid_to_user) { - if ( $> != $< and $> != ( $< - 2**32 ) ) { -- logmsg("fatal: return setuid failed"); -- die; # make it fatal to avoid security breaches -+ $) = "$( $("; # change eGID -+ $> = $<; # change eUID -+ if ( $> != $< and $> != ( $< - 2**32 ) ) { -+ logmsg("fatal: return setuid failed"); -+ die; # make it fatal to avoid security breaches -+ } - } - } - |