summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)Author
2026-04-17fix typo 'we mu uses....' Jason Lewis
fix type in man page. it said 'we mu uses...' I presume it meant just "mu uses"
2026-04-12improve documentationDirk-Jan C. Binnema
2026-04-09Fix typo in man page for mu-moveJason Lewis
fix typo on man page see #2915
2026-03-07scm: support --evalDirk-Jan C. Binnema
With the ~--eval~ option you can evaluate an expression in mu/scm environment. For example: $ mu scm --eval \ '(format #t "found ~d match(es)\n" (length (mfind "hello")))' found 7173 match(es) Add command-line parameter and implement.
2026-01-01man: mu-scm.1: fix formatting of `NAME` sectionJeremy Sowden
Format it consistently with the other man-pages and replace space in "mu scm" with hyphen to fix mandb(8) handling. Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
2026-01-01man: mu-query.7: correct typoJeremy Sowden
"and and extra" -> "and an extra" Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
2026-01-01man: mu-labels.1: replace single quote at the beginning of lineJeremy Sowden
Troff interprets single quotes at the beginning of lines as control characters. There is one in the source for mu-labels.1, which results in that line's being omitted from the output: The export command takes the labels in the store and the messages they apply to, and writes this information to a file. You can import this file later, to restore the labels. The command takes a path to a file or a directory (ending in Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
2025-12-15man/labels: update manpageDirk-Jan C. Binnema
Small fixes, some clarifications.
2025-12-15man/labels: improve man-pageDirk-Jan C. Binnema
Improve text, fix some inaccuracies.
2025-10-20Mainly typo and grammar fixes.Thomas Thiriez
2025-09-12labels: tighten labels regexpDirk-Jan C. Binnema
2025-09-08rename 'mu label' -> 'mu labels'Dirk-Jan C. Binnema
Update names, docs etc.
2025-09-02labels: allow restoring cache-mapDirk-Jan C. Binnema
E.g. with unexpected termination for mu it is possible that the labels-cache (i.e., the one that is used for auto-completion) gets disconnected from reality. Add a --restore option to `mu label list` to restore the actual labels from the labels seen in the store.
2025-09-01mu-label: no counts in list unless verboseDirk-Jan C. Binnema
2025-08-31man: update label manpageDirk-Jan C. Binnema
2025-08-31mu-label: allow more charactersDirk-Jan C. Binnema
reduce the number of "taboo" characters in labels. update docs.
2025-08-26Replace "the the " with "the "Anton Mosich
2025-08-26docs: Fix typoAnton Mosich
2025-08-24mu: add --listen option for serverDirk-Jan C. Binnema
Add a --listen option for the server Rework the option code to share the --listen / socket-path code between scm and server subcommands. Move option off the stack in mu.cc, seems it's too big, at least when using gdb.
2025-08-17scm: update documentationDirk-Jan C. Binnema
Describe the new --listen flag, and give some example of its usage, including some snippet for using it with Emacs/Geiser.
2025-08-16mu-init: automatic export labels with --reinitDirk-Jan C. Binnema
When re-initializing the store, automatically write the labels to a file in mu's cache, so user can later import them.
2025-08-15man: update man-pages (label / typos)Dirk-Jan C. Binnema
2025-08-15mu: add 'label' command + manpage + testsDirk-Jan C. Binnema
Add a label command and document it.
2025-06-30mu-scm: add options, some tweaksDirk-Jan C. Binnema
Add the (options) procedure + docs. Some internal tweaks / clean-ups.
2025-06-19mu-scm: add man-pageDirk-Jan C. Binnema
Not much yet.
2025-05-31man: update mu-index manpageDirk-Jan C. Binnema
Make it a bit more explicit what we ignore.
2025-05-24mu: rename --my-address into --personal-addressDirk-Jan C. Binnema
This makes things a bit more uniform with all the places where we use "personal". --my-address remains as an alias for the command-line option. Add unit test. Resolves #2806.
2025-05-04Merge pull request #2828 from a3a3el/bugfix/man-page-quoting-fixes/v1Dirk-Jan C. Binnema
man: fix some single-quoted strings
2025-03-23mu-find: implement format=json2Dirk-Jan C. Binnema
Implement a new experimental json2 format for mu-find, which gets rid of the ":" prefixes for fields, i.e., "subject" instead of ":subject". Document it as well.
2025-03-10man: escape a couple of back-slashesJeremy Sowden
Otherwise: (with the \040 specifying a space in the regular expression, and and extra '\' to escape it) is rendered as: (with the $ 40 specifying a space in the regular expression, and and extra `$ยด to escape it) Fixes: 5e2b7d52b24d ("mu-query.7: update documentation") Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
2025-03-10man: fix some single-quoted stringsJeremy Sowden
Commit 721aadc140f2 ("man: change quoting style") replaced single-quoted strings of the form: 'lorem ipsum' with: `lorem ipsum' to prevent the possibility of single quotes appearing at the beginning of lines, because these will be misinterpreted by troff. However, changes to the man-page sources in 1.12.9 reintroduced some of these, including one which does appear at the beginning of a line in mu-query(7): '"', '*', '(' and ')'. The details are shell-specific. In case of doubt, the which results in the following warning: troff:<standard input>:25: warning: macro '"',' not defined and the omission of that line from the rendered paragraph: NOTE: if you use queries on the command-line (say, for mu find), you need to quote any characters that would otherwise be interpreted by the shell, such as *--analyze option can be useful. Use back-ticks for the opening quotes. Fixes: 5e2b7d52b24d ("mu-query.7: update documentation") Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
2025-02-16mu4e: handle conversion from pcre regexpsDirk-Jan C. Binnema
mu server uses PCRE-compatible regular expressions, but mu4e needs Emacs-style. In simple cases, the two are the same, but when it gets slightly more complicated they do not. E.g., (foo|bar) => \(foo\|bar\) Mu4e can do the conversion automatically, but for this the pcre2el package (available in MELPA) is required, and is used if user installs is. Anyway, this code implements the automatic conversion and adds some documentation. Fixes #2816.
2025-01-26mu.1.org: update COLOR informationDirk-Jan C. Binnema
2025-01-08mu-query.7: update documentationDirk-Jan C. Binnema
In particular, regex searches.
2024-12-04mu-find: insist on --linksdir for linksDirk-Jan C. Binnema
Fixes #2790.
2024-12-02query: add related: combi-field + testDirk-Jan C. Binnema
Add a new combination (pseudo) field "related:", which combines "message-id" and "references"
2024-12-01man: improve mu-query manpageDirk-Jan C. Binnema
2024-11-10indexer: make lazy check even lazierDirk-Jan C. Binnema
In lazy-mode, we were skipping directories that did not change; however, this didn't help for the case were users received new messages in big maildirs. So, add another check where we compare the ctime of message files with the time of the last indexing operation. If it's smaller, ignore the message-file. This is faster than having to consult the Xapian database for each message. Note that this requires in mu4e: (setq mu4e-index-lazy-check t) or --lazy-check as a parameter for 'mu index'.
2024-09-25Merge pull request #2760 from markk/mk/query-man-pageDirk-Jan C. Binnema
Correct mu-query man page
2024-09-25mu-init: fix typo in manpage, improveDirk-Jan C. Binnema
2024-09-24man: update description of loggingDirk-Jan C. Binnema
Fixes #2762.
2024-09-15Correct mu-query man pageMark Knoop
Update mu-query man page to point to the mu info fields command.
2024-09-15man: attempt to avoid \u escape in man buildingDirk-Jan C. Binnema
This may help for #2756
2024-09-04Replace zero-width spaces in man pages with an empty string.QP
The zero-width spaces are added by the `man-link` macro to ensure bold text formatting when exporting from org, but they interfere with man page functionality in Emacs.
2024-07-22mu-man: typeset option values differentlyTristan Riehs
Use underlining only, do not use <>, as it is the most often done.
2024-07-22mu-man: typeset file names using underliningTristan Riehs
Make the emphasis more consistent, and do it using underscores in Org documents, since verbatim is rendered as underlined anyway.
2024-07-22mu-man: delete suspicious wordsTristan Riehs
2024-07-22mu-man: include whole prefooter in mu-viewTristan Riehs
2024-07-22mu-man: typeset reference in included fileTristan Riehs
2024-07-22mu-man: fix the BUGS section of mu-viewTristan Riehs