in reply to Server wide spam stop with qmail
Untested..#!/usr/bin/perl -w use strict; use Sys::Hostname qw(hostname); use Time::HiRes qw(gettimeofday); use Fatal qw(open close link unlink); use constant FORWARD => 0; use constant SUCCESS_DONTFORWARD => 99; my $maildir = '/var/spam'; # Maildir to store spam in. { local $/ = "\n\n"; $_ = <>; undef $/ my $body = <>; } exit !/^X-Spam-Flag:\s+YES/m ? print($_, $body), FORWARD : do { my $tph = join ".", time(), "$$\_".(gettimeofday)[1], hostname(); my $temp = "$maildir/tmp/$tph"; umask 007; # Name's Bond.. { open my $fh, ">", $temp; print $fh $_, $body; } link $temp, "$maildir/new/$tph"; unlink $temp; SUCCESS_DONTFORWARD; };
Makeshifts last the longest.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Server wide spam stop with qmail
by Juerd (Abbot) on Jan 04, 2003 at 09:23 UTC | |
by Aristotle (Chancellor) on Jan 04, 2003 at 13:01 UTC | |
by Juerd (Abbot) on Jan 04, 2003 at 14:05 UTC | |
by Anonymous Monk on Dec 16, 2003 at 20:51 UTC | |
by Anonymous Monk on Jan 06, 2004 at 20:34 UTC |