diff options
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/gnus.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index fb9113f4608..d1c746c2e56 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -21468,6 +21468,18 @@ The prefix to remove from each file name returned by notmuch in order | |||
| 21468 | to get a group name (albeit with @samp{/} instead of @samp{.}). This | 21468 | to get a group name (albeit with @samp{/} instead of @samp{.}). This |
| 21469 | is a regular expression. | 21469 | is a regular expression. |
| 21470 | 21470 | ||
| 21471 | @item nnir-notmuch-filter-group-names-function | ||
| 21472 | A function used to transform the names of groups being searched in, | ||
| 21473 | for use as a ``path:'' search keyword for notmuch. If nil, the | ||
| 21474 | default, ``path:'' keywords are not used. Otherwise, this should be a | ||
| 21475 | callable which accepts a single group name and returns a transformed | ||
| 21476 | name as notmuch expects to see it. In many mail backends, for | ||
| 21477 | instance, dots in group names must be converted to forward slashes: to | ||
| 21478 | achieve this, set this option to | ||
| 21479 | @example | ||
| 21480 | (lambda (g) (replace-regexp-in-string "\\." "/" g)) | ||
| 21481 | @end example | ||
| 21482 | |||
| 21471 | @end table | 21483 | @end table |
| 21472 | 21484 | ||
| 21473 | 21485 | ||