> I've been using bogofilter to build up a Berkeley database of spam and
> non-spam phrases.  I'm trying to inspect the files (goodlist.db and
> spamlist.db) using dbmopen, and basically nothing happens, except that two
> very small files are created, in this case, spamlist.dir and spamlist.pag.

Try adding this before the first dbmopen:

    @AnyDBM_File::ISA = ("DB_File");

Or this might also work:

    use DB_File;

dbmopen defaults to using DBM, NDBM, or some other dbm format on your
system.  The other formats use *.dir and *.pag files.

-- 
John Tobey <[EMAIL PROTECTED]>
\____^-^
/\  /\
_______________________________________________
Boston-pm mailing list
[EMAIL PROTECTED]
http://mail.pm.org/mailman/listinfo/boston-pm

Reply via email to