Tom Allison writes:
> Additionally, when I first run spamd -q -D there is something a little
> strange. It actually tries to score one email. There aren't any. It's
> not connected to anything. It also tries to score it as the user I'm
> starting as. Is this a normal startup process to just du
Tom Allison wrote:
I'm trying to initialize a database for Bayes from perl (DIY).
I took the advice of others and removed much of this approach and just decide to
try running Mail::SpamAssassin as is and let it create the database entry for
the specified user.
It simply will not create an
I'm trying to initialize a database for Bayes from perl (DIY).
Using Test::More as a start I tried:
can_ok('Mail::SpamAssassin::BayesStore', ('tie_db_readonly'));
my $to = 'tom';
my $spamtest = Mail::SpamAssassin->new( {username => $to, debug=>'all'} );
isa_ok($spamtest, 'Mail::SpamAssassin');