small-hacks/remove-spam-high-confidence-maildir.plx

119 lines
3.8 KiB
Text
Raw Normal View History

2010-11-20 17:18:13 -05:00
#!/usr/bin/perl
# Copyright (C) 2010, Bradley M. Kuhn
#
# This program gives you software freedom; you can copy, modify, convey,
# and/or redistribute it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program in a file called 'GPLv3'. If not, write to the:
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor
# Boston, MA 02110-1301, USA.
use strict;
use warnings;
use Mail::Header;
2011-05-28 15:21:28 -04:00
use Date::Manip;
2010-11-20 17:18:13 -05:00
#use File::Copy;
if (@ARGV < 3 or @ARGV > 4) {
2011-05-28 15:21:28 -04:00
print STDERR "usage: $0 <MAILDIR_DIRECTORY> <DSPAM_PROBABILITY_MIN> <DSPAM_CONFIDENCE_LEVEL_MIN> <DAYS> [<COUNT_ONLY_DONT_DELETE>]\n";
2010-11-20 17:18:13 -05:00
exit 1;
}
2011-05-28 15:21:28 -04:00
my($MAILDIR_FOLDER, $DSPAM_PROB_MIN, $DSPAM_CONF_MIN, $DAYS, $COUNT_ONLY) = @ARGV;
2010-11-20 17:18:13 -05:00
my($total, $countDeleted) = (0, 0);
2011-05-28 15:21:28 -04:00
my $nDaysAgo = ParseDate("$DAYS days ago");
my @msgDirs = ("$MAILDIR_FOLDER/cur", "$MAILDIR_FOLDER/new");
foreach my $dir (@msgDirs) {
die "$MAILDIR_FOLDER must not be a maildir folder (or is unreadable by you), since $dir isn't a readable directory: $!"
unless (-d $dir);
}
MAIL: foreach my $dir (@msgDirs) {
opendir(MAILDIR, $dir) or die "Unable to open directory $dir for reading: $!";
while (my $file = readdir MAILDIR) {
next if -d $file; # skip directories
my $fullFileName = "$dir/$file";
unless (open(MAIL_MESSAGE, "<", $fullFileName)) {
print STDERR "File, $fullFileName, appears to have disappeared during processing ($!).\n (Ignoring that fact, but counts may be off.)\n";
next MAIL;
}
2010-11-20 17:18:13 -05:00
my $header = new Mail::Header(\*MAIL_MESSAGE);
my $fields = $header->header_hashref;
2010-11-20 17:18:13 -05:00
2011-05-28 15:21:28 -04:00
my $mailDate;
foreach my $dt (@{$fields->{"Date"}}) {
if (not defined $mailDate) {
$mailDate = $dt;
} else {
$mailDate = $dt if $dt lt $maileDate;
}
}
if (not defined $mailDate) {
print STDERR "File $file has no Date: header. Skipping.\n";
next MAIL;
}
$parsedDate = ParseDate($mailDate);
unless (defined $parseDate) {
print STDERR "File $file has Unparsable Date header $mailDate";
next MAIL;
}
next MAIL if ($parseDate gt $nDaysAgo);
my %dspamVal;
foreach my $val ('Confidence', 'Probability') {
foreach my $dv (@{$fields->{"X-Dspam-$val"}}) {
2010-11-20 17:18:13 -05:00
if (not defined $dspamVal{$val}) {
$dspamVal{$val} = $dv;
} else {
2010-11-20 17:21:32 -05:00
$dspamVal{$val} = $dv if $dv < $dspamVal{$val};
2010-11-20 17:18:13 -05:00
}
}
if (not defined $dspamVal{$val}) {
print STDERR "File $file has no X-Dspam-$val header. Skipping.\n";
next MAIL;
2010-11-20 17:18:13 -05:00
}
}
$total++;
if ($dspamVal{Confidence} >= $DSPAM_CONF_MIN and
$dspamVal{Probability} >= $DSPAM_PROB_MIN) {
$countDeleted++;
2010-11-21 19:52:46 -05:00
unless (defined $COUNT_ONLY and $COUNT_ONLY) {
warn "unable to unlink $fullFileName: $!"
unless unlink("$fullFileName") == 1;
}
}
2010-11-20 17:18:13 -05:00
close MAIL_MESSAGE;
}
close MAILDIR;
}
my $percent = ($countDeleted / $total) * 100.00;
2010-11-20 17:18:13 -05:00
2010-11-21 19:52:46 -05:00
print sprintf("%.2f", $percent), "% ($countDeleted/$total) ",
(defined $COUNT_ONLY and $COUNT_ONLY ?
sprintf("were deleted.\nThis leaves %d in the folder.\n",
$total - $countDeleted) : " would be deleted.\n");
2010-11-20 17:18:13 -05:00
###############################################################################
#
# Local variables:
# compile-command: "perl -c remove-spam-high-confidence-maildir.plx"
2010-11-20 17:18:13 -05:00
# End: