Changeset 106
- Timestamp:
- 11.12.2006 00:05:14 (2 years ago)
- Files:
-
- trunk/devel/FuzzyOcr/Config.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/devel/FuzzyOcr/Config.pm
r100 r106 443 443 setting => 'focr_autosort_buffer', 444 444 default => 10, 445 type => $Mail::SpamAssassin::Conf::CONF_TYPE_ BOOL445 type => $Mail::SpamAssassin::Conf::CONF_TYPE_NUMERIC 446 446 }); 447 447 push (@cmds, { … … 635 635 } 636 636 unless ($conf->{focr_skip_updates}) { 637 use DBI;638 use MLDBM qw(DB_File Storable);639 use MLDBM::Sync;640 637 if ($conf->{focr_enable_image_hashing} == 2 and -r $conf->{focr_digest_db}) { 638 use MLDBM qw(DB_File Storable); 639 use MLDBM::Sync; 641 640 my %DB; my $dbm; my $sdbm; my $err = 0; 642 641 my $now = time - ($conf->{focr_db_max_days}*86400); … … 703 702 } 704 703 if ($conf->{focr_enable_image_hashing} == 3 and defined (my $ddb = get_mysql_ddb())) { 704 use DBI; 705 use MLDBM qw(DB_File Storable); 706 use MLDBM::Sync; 705 707 my $db = $conf->{focr_mysql_db}; 706 708 my $tab = $conf->{focr_mysql_hash};
