2004-09-08 18:26:33 +02:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
use lib 't';
|
|
|
|
use Test::Qpsmtpd;
|
|
|
|
|
|
|
|
my $qp = Test::Qpsmtpd->new();
|
|
|
|
|
2014-11-04 21:49:15 +01:00
|
|
|
$qp->run_plugin_tests($ARGV[0]);
|
2004-09-08 18:26:33 +02:00
|
|
|
|
2013-04-21 06:52:07 +02:00
|
|
|
foreach my $file ("./t/config/greylist.dbm", "./t/config/greylist.dbm.lock") {
|
|
|
|
next if !-f $file;
|
2012-06-03 04:56:05 +02:00
|
|
|
unlink $file;
|
2013-04-21 06:52:07 +02:00
|
|
|
}
|
2012-06-03 04:56:05 +02:00
|
|
|
|