Variable: nnir-hyrex-remove-prefix

nnir-hyrex-remove-prefix is a customizable variable defined in nnir.el.gz.

Value

"/root/Mail/"

Documentation

The prefix to remove from HyREX file names to get group names.

Resulting names have '/' in place of '.'.

For example, suppose that HyREX returns file names such as
"/home/john/Mail/mail/misc/42". For this example, use the following
setting: (setq nnir-hyrex-remove-prefix "/home/john/Mail/")
Note the trailing slash. Removing this prefix gives "mail/misc/42". nnir knows to remove the "/42" and to replace "/" with "." to arrive at the correct group name, "mail.misc".

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/nnir.el.gz
(defcustom nnir-hyrex-remove-prefix (concat (getenv "HOME") "/Mail/")
  "The prefix to remove from HyREX file names to get group names.
Resulting names have '/' in place of '.'.

For example, suppose that HyREX returns file names such as
\"/home/john/Mail/mail/misc/42\".  For this example, use the following
setting:  (setq nnir-hyrex-remove-prefix \"/home/john/Mail/\")
Note the trailing slash.  Removing this prefix gives \"mail/misc/42\".
`nnir' knows to remove the \"/42\" and to replace \"/\" with \".\" to
arrive at the correct group name, \"mail.misc\"."
  :type '(directory))