56 lines
2.0 KiB
Plaintext
56 lines
2.0 KiB
Plaintext
# @(#$Id: recoll.conf.in,v 1.6 2006-01-10 11:07:21 dockes Exp $ (C) 2004 J.F.Dockes
|
|
#
|
|
# Recoll default configuration file. This should be copied to
|
|
# ~/.recoll/recoll.conf
|
|
|
|
# Space-separated list of directories to index. Next line indexes $HOME
|
|
topdirs = ~
|
|
|
|
# Wildcard expressions for names of files and directories that we should
|
|
# ignore. If you need index mozilla/thunderbird mail folders, don't put
|
|
# ".*" in there (as was the case with an older sample config)
|
|
skippedNames = *~ #* bin CVS Cache caughtspam tmp
|
|
|
|
# Debug messages. 4 is quite verbose. 3 would be errors only.
|
|
loglevel = 4
|
|
logfilename = stderr
|
|
|
|
# Place to search for executable filters. If RECOLL_FILTERSDIR is set in
|
|
# the environement, we use it instead
|
|
filtersdir = @prefix@/share/recoll/filters
|
|
|
|
# Languages for which to build stemming databases at the end of
|
|
# indexing. Stemmer names can be found on http://www.xapian.org
|
|
# The flag to perform stem expansion at query time is now set from the GUI
|
|
indexstemminglanguages = english french
|
|
|
|
# Name of the file suffix to mime-type map file.
|
|
mimemapfile = mimemap
|
|
# Name of the mime-type to filter type/name map file.
|
|
mimeconffile = mimeconf
|
|
|
|
# The only reason to change this would be if you want to change the icons
|
|
# displayed in the result list
|
|
iconsdir = @prefix@/share/recoll/images
|
|
|
|
# Where to store the database.
|
|
dbdir = ~/.recoll/xapiandb
|
|
|
|
# Default character set. Values found inside files, ie content tag in html
|
|
# documents, will override this. It can be specified per directory (see
|
|
# below). Used when converting to utf-8 (internal storage format), so it
|
|
# may be quite important for pure text files.
|
|
defaultcharset = iso-8859-1
|
|
|
|
# Guessing charsets usually does not work well
|
|
guesscharset = 0
|
|
|
|
# Should we use the system's 'file -i' command as a final step in file type
|
|
# identification ? This may be useful, but will usually cause the
|
|
# indexation of many bogus 'text' files
|
|
usesystemfilecommand = 1
|
|
|
|
# You could specify different parameters for a subdirectory like this:
|
|
#[~/hungariandocs/plain]
|
|
#defaultcharset = iso-8859-2
|