2004-09-08 16:26:33 +00: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 00:52:07 -04:00
|
|
|
foreach my $file ("./t/config/greylist.dbm", "./t/config/greylist.dbm.lock") {
|
|
|
|
next if !-f $file;
|
2012-06-02 22:56:05 -04:00
|
|
|
unlink $file;
|
2013-04-21 00:52:07 -04:00
|
|
|
}
|
2012-06-02 22:56:05 -04:00
|
|
|
|