kill_partial.cfg

kill_partial.cfg defines URL patterns to be killed from a data source during the indexing phase .

When this file exists, it will be automatically applied to all non-Push data sources when it is indexed.

Format

The file consists of a list of URL patterns of documents to kill, with one URL per line.

# comment-line
URL-PATTERN
URL-PATTERN

a simple string that is matched as a left-anchored substring against the indexed URL.

For http URLs the http:// can be omitted.

The pattern does not support wildcards or regular expressions.
comment-line

a line that starts with a # is a comment line and ignored when reading the configuration file.

Example

http://www.funnelback.com/              # matches all docs with URLs in the www.funnelback.com site
www.funnelback.com/                     # exactly the same as the previous line (http protocol is assumed).
https                                   # matches all the URLs starting with the https protocol
http://www.funnelback.com/calendar.cgi  # matches calendar.cgi with any trailing parameters