Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bogoupgrade(1) [centos man page]

BOGOUPGRADE(1)						    Bogofilter Reference Manual 					    BOGOUPGRADE(1)

NAME
bogoupgrade - upgrades bogofilter database to current version SYNOPSIS
bogoupgrade [-h] -d directory [-i input file] [-o output file] [-b path to bogoutil] DESCRIPTION
bogoupgrade is a command to upgrade bogofilter's databases from an old format to the current format. Since the format of the database changes once in a while, the utility is designed to make the upgrade easy. OPTIONS
The -h option prints the help message and exits. The -d specifies the directory with the wordlists for converting. This option is used when converting from multiple, separate wordlists (spamlist.db and goodlist.db - containing spam and ham tokens, respectively) to a combined wordlist (wordlist.db) which contains both spam and ham tokens. The -i specifies the input file to be converted. It should be a text file containing message counts, and possibly data. If there is no data in the text file, there should be a Berkeley DB file in the same directory as the text file which contains the data. The -o specifies the output Berkeley DB file. The -b gives the path to the bogoutil command. It defaults to 'bogoutil', in the hopes that your shell will find it. UPGRADING
Follow these instructions to upgrade bogofilter's databases to the latest version. 1. Stop all instances of bogofilter. While the upgrade tools lock the database files, the upgrade may take a long time if you have a busy site. Don't forget to stop cron jobs or daemons that fetch and process mail and could fire off bogofilter. 2. Backup your data. Let's assume that you said: $ mv ~/.bogofilter ~/.bogofilter.safe $ mkdir ~/.bogofilter 3. If your bogofilter version is less than 0.7, say: $ bogoupgrade -i ~/.bogofilter.safe/goodlist -o ~/.bogofilter/goodlist.db $ bogoupgrade -i ~/.bogofilter.safe/badlist -o ~/.bogofilter/spamlist.db If your bogofilter version is 0.7 or greater, say: $ bogoupgrade -i ~/.bogofilter.safe/hamlist.count -o ~/.bogofilter/goodlist.db $ bogoupgrade -i ~/.bogofilter.safe/spamlist.count -o ~/.bogofilter/spamlist.db 4. Current versions of bogofilter use a combined wordlist that holds both spam and non-spam tokens. It is named wordlist.db. If you're updating from a version older than 0.14.0 that has separate wordlists (named goodlist.db and spamlist.db), use: $ bogoupgrade -d ~/.bogofilter.safe 5. Done. Restart any stopped daemons, cron tasks, etc. AUTHOR
bogoupgrade was written by Gyepi Sam gyepi@praxis-sw.com and David Relson relson@osagesoftware.com. For updates, see the bogofilter project page[1]. SEE ALSO
bogofilter(1), bogolexer(1), bogotune(1), bogoutil(1) NOTES
1. the bogofilter project page http://bogofilter.sourceforge.net/ Bogofilter 10/22/2012 BOGOUPGRADE(1)

Check Out this Related Man Page

BOGOUTIL(1)						    Bogofilter Reference Manual 					       BOGOUTIL(1)

NAME
bogoutil - Dumps, loads, and maintains bogofilter database files SYNOPSIS
bogoutil {-h | -V} bogoutil [options] {-d file | -H file | -l file | -m file | -w file | -p file} bogoutil {-r file | -R file} bogoutil {--db-print-leafpage-count file | --db-print-pagesize file | --db-verify file | --db-checkpoint directory [flag...] | --db-list-logfiles directory | --db-prune directory | --db-recover directory | --db-recover-harder directory | --db-remove-environment directory} where options is bogoutil [-v] [-n] [-C] [-D] [-a age] [-c count] [-s min,max] [-y date] [-I file] [-O file] [-x flags] [--config-file file] DESCRIPTION
Bogoutil is part of the bogofilter Bayesian spam filter package. It is used to dump and load bogofilter's Berkeley DB databases to and from text files, perform database maintenance functions, and to display the values for specific words. OPTIONS
The -d file option tells bogoutil to print the contents of the database file to stdout. The -H file option tells bogoutil to print a histogram of the database file to stdout. The output is similar to bogofilter -vv. Finally, hapaxes (tokens which were only seen once) and pure tokens (tokens which were encountered only in ham or only in spam) are counted. The -l file option tells bogoutil to load the data from stdin into the database file. If the database file exists, stdin data is merged into the database file, with counts added up. The -m option tells bogoutil to perform maintenance functions on the specified database, i.e. discard tokens that are older than desired, have counts that are too small, or sizes (lengths) that are too long or too short. The -w file option tells bogoutil to display token information from the database file. The option takes an argument, which is either the name of the wordlist (usually wordlist.db) or the name of the directory containing it. Tokens can be listed on the command line or piped to bogoutil. When there are extra arguments on the command line, bogoutil will use them as the tokens to lookup. If there are no extra arguments, bogoutil will read tokens from stdin. The -p file option tells bogoutil to display the database information for one or more tokens. The display includes a probability column with the token's spam score (computed using bogofilter's default values). Option -p takes the same arguments as option -w . The -r file option tells bogoutil to recalculate the ROBX value and print it as a six-digit fraction. The -R file option does the same as -r, but prints more information and saves the result in the training database. The -I file option tells bogoutil to read its input from file rather than stdin. The -O file option tells bogoutil to write its output to file rather than stdout. The -v option produces verbose output on stderr. This option is primarily useful for debugging. The -C inhibits reading configuration files and lets bogoutil go with the defaults. The --config-file file option tells bogoutil to read file instead of the standard configuration file. The -D redirects debug output to stdout (it usually goes to stderr). The -x flags option sets debugging flags. Option -n stands for "replace non-ascii characters". It will replace characters with the high bit (0x80) by question marks. This can be useful if a word list has lots of unreadable tokens, for example from Asian spam. The "bad" characters will be converted to question marks and matching tokens will be combined when used with -m or -l, but not with -d. Option -a age indicates an acceptable token age, with older ones being discarded. The age can be a date (in form YYYYMMMDD) or a day count, i.e. discard tokens older than age days. Option -c value indicates that tokens with counts less than or equal to value are to be discarded. Option -s min,max is used to discard tokens based on their size, i.e. length. All tokens shorter than min or longer than max will be discarded. Option -y date is specifies the date to give to tokens that don't have dates. The format is YYYYMMDD. The -h option prints the help message and exits. The -V option prints the version number and exits. ENVIRONMENT MAINTENANCE
The --db-checkpoint dir option causes bogoutil to flush the buffer caches and checkpoint the database environment. The --db-list-logfiles dir option causes bogoutil to list the log files in the environment. Zero or more keywords can be added or combined (separated by whitespace) to modify the behavior of this mode. The default behavior is to list only inactive log files with relative paths. You can add all to list all log files (inactive and active). You can add absolute to switch the listing to absolute paths. The --db-prune dir option causes bogoutil to checkpoint the database environment and remove inactive log files. The --db-recover dir option runs a regular database recovery in the specified database directory. If that fails, it will retry with a (usually slower) catastrophic database recovery. If that fails, too, your database cannot be repaired and must be rebuilt from scratch. This is only supported when compiled with Berkeley DB support with transactions enabled. Trying recovery with QDBM or SQLite3 support will result in an error. The --db-recover-harder dir option runs a catastrophic data base recovery in the specified database directory. If that fails, your database cannot be repaired and must be rebuilt from scratch. This is only supported when compiled with Berkeley DB support with transactions enabled. Trying recovery with QDBM or SQLite3 support will result in an error. The --db-remove-environment directory option has no short option equivalent. It runs recovery in the given directory and then removes the database environment. Use this before upgrading to a new Berkeley DB version if the new version to be installed requires a log file format update. The --db-print-leafpage-count file option prints the number of leaf pages in the database file file as a decimal number, or UNKNOWN if the database does not support querying this figure. The --db-print-pagesize file option prints the size of a database page in file as a decimal number, or UNKNOWN for databases with variable page size or databases that do not allow a query of the database page size. The --db-verify file option requests that bogofilter verifies the database file. It prints only errors, unless in verbose mode. DATA FORMAT
Bogoutil reads and writes text files where each nonblank line consists of a word, any amount of horizontal whitespace, a numeric word count, more whitespace, and (optionally) a date in form YYYYMMDD. Blank lines are skipped. RETURN VALUES
0 for successful operation. 1 for most errors. 3 for I/O or other errors. Error 3 usually means that something is seriously wrong with the database files. AUTHOR
Gyepi Sam gyepi@praxis-sw.com. Matthias Andree matthias.andree@gmx.de. David Relson relson@osagesoftware.com. For updates, see the bogofilter project page[1]. SEE ALSO
bogofilter(1), bogolexer(1), bogotune(1), bogoupgrade(1) NOTES
1. the bogofilter project page http://bogofilter.sourceforge.net/ Bogofilter 03/15/2010 BOGOUTIL(1)
Man Page