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();
|
|
|
|
|
|
|
|
$qp->run_plugin_tests();
|
|
|
|
|
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
|
|
|
|