From: Pietro Cerutti Date: Mon, 24 Jun 2019 12:50:46 +0000 (+0000) Subject: Clarify header_cache behaviour on missing paths X-Git-Tag: 2019-10-25~158 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3cad4d990d1e906c61755bd41576008891c4c3a;p=neomutt Clarify header_cache behaviour on missing paths Fixes #1752 --- diff --git a/init.h b/init.h index d569fe420..752450523 100644 --- 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.