mu: remove mfind command

Better document what find does instead.
This commit is contained in:
Dirk-Jan C. Binnema 2020-02-24 21:18:54 +02:00
parent 934adae70a
commit 06c9b17a4e
4 changed files with 4 additions and 24 deletions

View File

@ -29,9 +29,6 @@
- The ~--xbatchsize~ and ~--autoupgrade~ options for indexing are gone now; both
are determined implicitly now.
- There is a new sub-command ~mfind~, which works just like ~find~, but uses
some mu4e-defaults ~--skip-dups~ and ~--include-related~.
*** mu4e
- In many cases, ~mu4e~ used to receive /all/ contacts after each indexing
@ -53,6 +50,9 @@
But it's available now for testing. Note that this requires the gnus-based
viewer, ie ~(setq mu4e-view-use-gnus t)~
- In addition, he added support for custom headers, so the ones for for the
non-gnus-view should work just as well.
- Pierre Neidhardt contributed an "Account Setup Helper" which wraps the
existing context setup with some niceties for accounts. See the manual for
details.

View File

@ -34,14 +34,4 @@ dist_man_MANS = \
mu-script.1 \
mu-verify.1 \
mu-view.1 \
mu.1 \
$(BUILT_SOURCES)
BUILT_SOURCES= \
mu-mfind.1
mu-mfind.1: mu-find.1
cp -f $< $@
CLEANFILES= \
$(BUILT_SOURCES)
mu.1

View File

@ -222,13 +222,6 @@ set_group_find_defaults (void)
get_output_format (MU_CONFIG.formatstr);
expand_dir (MU_CONFIG.linksdir);
if (MU_CONFIG.cmd == MU_CONFIG_CMD_MFIND) {
/* 'mfind' --> find with mu4e defaults */
MU_CONFIG.include_related = TRUE;
MU_CONFIG.skip_dups = TRUE;
MU_CONFIG.cmd = MU_CONFIG_CMD_FIND;
}
}
static GOptionGroup*
@ -492,7 +485,6 @@ cmd_from_string (const char *str)
{ "index", MU_CONFIG_CMD_INDEX },
{ "info", MU_CONFIG_CMD_INFO },
{ "init", MU_CONFIG_CMD_INIT },
{ "mfind", MU_CONFIG_CMD_MFIND },
{ "mkdir", MU_CONFIG_CMD_MKDIR },
{ "remove", MU_CONFIG_CMD_REMOVE },
{ "script", MU_CONFIG_CMD_SCRIPT },
@ -566,7 +558,6 @@ get_option_group (MuConfigCmd cmd)
case MU_CONFIG_CMD_EXTRACT:
return config_options_group_extract();
case MU_CONFIG_CMD_FIND:
case MU_CONFIG_CMD_MFIND:
return config_options_group_find();
case MU_CONFIG_CMD_INDEX:
return config_options_group_index();

View File

@ -71,7 +71,6 @@ typedef enum {
MU_CONFIG_CMD_INDEX,
MU_CONFIG_CMD_INFO,
MU_CONFIG_CMD_INIT,
MU_CONFIG_CMD_MFIND,
MU_CONFIG_CMD_MKDIR,
MU_CONFIG_CMD_REMOVE,
MU_CONFIG_CMD_SCRIPT,