]> granicus.if.org Git - neomutt/commitdiff
Clarify header_cache behaviour on missing paths
authorPietro Cerutti <gahr@gahr.ch>
Mon, 24 Jun 2019 12:50:46 +0000 (12:50 +0000)
committerRichard Russon <rich@flatcap.org>
Wed, 26 Jun 2019 21:54:19 +0000 (22:54 +0100)
Fixes #1752

init.h

diff --git a/init.h b/init.h
index d569fe420dd2bc7786020c381089fe29902634a5..752450523a2dcd90f91a6dd036fa793e67259cb9 100644 (file)
--- a/init.h
+++ b/init.h
@@ -1365,11 +1365,12 @@ struct ConfigDef MuttVars[] = {
   { "header_cache", DT_STRING|DT_PATH, &C_HeaderCache, 0 },
   /*
   ** .pp
-  ** This variable points to the header cache database.
-  ** If pointing to a directory NeoMutt will contain a header cache
-  ** database file per folder, if pointing to a file that file will
-  ** be a single global header cache. By default it is \fIunset\fP so no header
-  ** caching will be used.
+  ** This variable points to the header cache database. If the path points to
+  ** an existing directory, NeoMutt will create a dedicated header cache
+  ** database per folder. Otherwise, the path points to a regular file, which
+  ** will be created as needed and used as a shared global header cache for
+  ** all folders.
+  ** By default it is \fIunset\fP so no header caching will be used.
   ** .pp
   ** Header caching can greatly improve speed when opening POP, IMAP
   ** MH or Maildir folders, see "$caching" for details.