A folder to access messages found in namazu-index with some condition. It uses namazu (http://www.namazu.org/) for search.
Format:
`[' search condition `]' [ absolute path of namazu index ]
Default value of the path of namazu index can be assigned by elmo-nmz-default-index-path.
Example:
[wanderlust] -> search messages matched with
"wanderlust" from the default index
[semi flim]~/Mail/semi -> search "semi flim" from the index
in the directory "~/Mail/semi"
If you want to use space in folder entry, C-q SPC will help you.
You can define an alias name for index.
Example:
(setq elmo-nmz-index-alias-alist
'(("cache" . "~/.elmo/cache")
("docs" . "~/documents")))
Above definition defines two index aliases. You can specify
[wanderlust]cache
to execute a namazu search with keyword `wanderlust' using a index in the directory `~/.elmo/cache'.
You can specify a list for elmo-nmz-default-index-path and
elmo-nmz-index-alias-alist.
When list is specified, all index contained in the list is used as the
namazu indices.
Example:
(setq elmo-nmz-index-alias-alist
'(("all" . ("~/.elmo/cache" "~/documents"))
("cache" . "~/.elmo/cache")))
Using above alias setting, you can specify
[wanderlust]all
to execute a namazu search with keyword `wanderlust' using indices in the directory `~/.elmo/cache' and `~/documents'.
Go to the first, previous, next, last section, table of contents.