summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-03-29Merge pull request #2674 from alphapapa/fix/man-pageDirk-Jan C. Binnema
man: Escape Org heading-like lines in example
2024-03-28man: Escape Org heading-like lines in exampleAdam Porter
2024-03-19Merge pull request #2668 from Chris00/masterDirk-Jan C. Binnema
Update install instructions for icalendar
2024-03-19mu4e: set gnus-icalendar-setup as alias for mu4e-icalendar-setupDirk-Jan C. Binnema
2024-03-19Merge pull request #2667 from OnkelUlla/fix_typoDirk-Jan C. Binnema
mu-index.1: fix typo
2024-03-19Update install instructions for icalendarChristophe Troestler
2024-03-19mu-index.1: fix typoUlrich Ölmann
2024-03-18mu4e.texi: add compose-reply-wide-or-not-please-ask exampleDirk-Jan C. Binnema
2024-03-17mu-query: use mu info tablesDirk-Jan C. Binnema
2024-03-17Merge pull request #2663 from stefanv/doc-missing-flagsDirk-Jan C. Binnema
Document personal and calendar flags
2024-03-16Document personal and calendar flagsStefan van der Walt
2024-03-16build: bump version to 1.12.2v1.12.2Dirk-Jan C. Binnema
2024-03-15xapian-db: use get_msg on exceptionDirk-Jan C. Binnema
We were using get_error_string, but that might be NULL, which libfmt doesn't like much.
2024-03-15github: update ubuntu ci buildDirk-Jan C. Binnema
Turn off sanitize-address (which seems to hang atm) Add libcld2-dev
2024-03-15mu4e-compose: rework mu4e-compose-goto-(bottom|top)Dirk-Jan C. Binnema
For backward compat.
2024-03-15mu4e.texi: add missing node in composer menuDirk-Jan C. Binnema
2024-03-15mu4e-helpers: fix mu4e-keymap-set for older emacsDirk-Jan C. Binnema
2024-03-15mu4e-compose: avoid byte-compile warnings on older emacsenDirk-Jan C. Binnema
2024-03-15mu4e-helpers: check for key-valid-pDirk-Jan C. Binnema
It's not available in older emacsen.
2024-03-15message: flag list-unsubscribe as MailingListDirk-Jan C. Binnema
Flag message that merely have a List-Unsubscribe header with Flags::MailingList too (some marketing message have this header, yet miss "List-Id". Add a test as well.
2024-03-15clang: fix some compiler warningsDirk-Jan C. Binnema
From CI.
2024-03-14mu4e-helpers: add mu4e-keymap-set, fix warningsDirk-Jan C. Binnema
keymap-set only appeared in Emacs 29, so add a stand-in for now. Fix some flymake warnings.
2024-03-13mu4e-compose: copy message-reply-headers to fake bufferDirk-Jan C. Binnema
We need copy the buffer-local value from _another_ buffer HT: Martin R. Albrecht.
2024-03-12mu4e-compose: only use keymap-set when availableDirk-Jan C. Binnema
Was added with emacs 29.
2024-03-12IDEAS.org: update for PDF indexingDirk-Jan C. Binnema
2024-03-12mu4e-compose: restore mu4e-compose-goto-(bottom|top)Dirk-Jan C. Binnema
Bring back from 1.10.
2024-03-10guile: separate guile load/extensions pathDirk-Jan C. Binnema
2024-03-10Merge commit 'pullreqs/2635'Dirk-Jan C. Binnema
2024-03-07mu-index.1: add note about encryptionDirk-Jan C. Binnema
mu index does not decrypt. Fixes #2660.
2024-03-07Merge pull request #2652 from a3a3el/more-man-page-fixesDirk-Jan C. Binnema
More man page fixes
2024-03-06man: change quoting styleJeremy Sowden
The man-page sources use single quotes to quote text. However, this can be problematic in man-pages because if a single quote appears at the beginning of a line the following word is interpreted by troff as a macro. For example, this paragraph in mu-easy.7: What if we want to see some of the body of the message? You can get a 'summary' of the first lines of the message using the \fI\-\-summary\-len\fP option, which will 'summarize' the first \fIn\fP lines of the message: elicits this warning: $ man --warnings obj-x86_64-linux-gnu/man/mu-easy.7 >/dev/null troff:<standard input>:166: warning: macro 'summarize'' not defined and gets truncated: What if we want to see some of the body of the message? You can get a 'summary' of the first lines of the message using the --summary-len op‐ tion, which will One could adjust the line-wrapping to move the quoted text away from the beginning of the line, but that is fragile. Another possibility would be to use the troff escape-sequences for open and close quotes (`\(oq` and `\(cq` respectively), but ox-man is being used precisely to avoid having to handle troff directly. Instead use back-ticks for left quotes. Thus: What if we want to see some of the body of the message? You can get a `summary' of the first lines of the message using the \fI\-\-summary\-len\fP option, which will `summarize' the first \fIn\fP lines of the message: which is rendered correctly: What if we want to see some of the body of the message? You can get a `summary' of the first lines of the message using the --summary-len op- tion, which will `summarize' the first n lines of the message: Signed-off-by: Jeremy Sowden <azazel@debian.org>
2024-03-06man: fix formatting of `NAME` sectionsJeremy Sowden
The command names are formatted inconsistently, e.g.: * NAME ~mu add~ - add one or more messages to the database versus: * NAME *mu cfind* is the *mu* command to find contacts in the *mu* database and export them versus: * NAME mu server - the mu backend for the mu4e e-mail client and the format, with a space between "mu" and the subcommand, is not compatible with mandb(8). Use formatting which is consistent and replace the spaces with hyphens. Signed-off-by: Jeremy Sowden <azazel@debian.org>
2024-03-06man: disable captions in tablesJeremy Sowden
The tables don't define any captions, and ox-man outputs a `.TB` macro that groff does not support. Signed-off-by: Jeremy Sowden <azazel@debian.org>
2024-03-06man: fix formatting of underscoresJeremy Sowden
In org-mode, underscores are used to represent subscripts. Thus, `a_b` will be transcoded to `a\d\s-2b\s+2\u`. Configure org-mode only to do this for `a_{b}`. Signed-off-by: Jeremy Sowden <azazel@debian.org>
2024-03-06man: fix bold syntax-errorJeremy Sowden
There's a closing asterisk missing from a bold string. Signed-off-by: Jeremy Sowden <azazel@debian.org>
2024-03-06man: build mu-move.1Jeremy Sowden
1.12.0 includes a new mu-move.1 man-page but the list of man-pages in man/meson.build was not updated, so it is not built. Signed-off-by: Jeremy Sowden <azazel@debian.org>
2024-03-04mu4e-compose: bring back mu4e-compose-context-switchDirk-Jan C. Binnema
This is the version from 1.10.x that does not change the draft folder.
2024-03-04mu4e-compose: bring back mu4e-compose-attach-captured-messageDirk-Jan C. Binnema
It went missing after the compose refactoring. Fixes #2654.
2024-03-04Merge pull request #2657 from rrudakov/fix/2656-cite-reply-positionDirk-Jan C. Binnema
Respect `message-cite-reply-position` customization
2024-03-04Merge pull request #2655 from rrudakov/masterDirk-Jan C. Binnema
Fix typo
2024-03-04[#2656] Respect `message-cite-reply-position` customizationRoman Rudakov
2024-03-04Fix typoRoman Rudakov
2024-03-03build: bump version to 1.12.1v1.12.1Dirk-Jan C. Binnema
2024-03-03mu4e-compose: return new buffer from mu4e--compose-setupDirk-Jan C. Binnema
I.e, and this applies to all mu4e-compose-* composition functions as well. Fixes #2653.
2024-03-03mu4e.texi: remove reference to context-switch while editingDirk-Jan C. Binnema
2024-03-02mu4e-compose: tweak buffer handler, add display-bufferDirk-Jan C. Binnema
Add 'display-buffer as an option for mu4e-compose-switch, which lets you use the display-buffer function for display. Remove the mu4e-message-kill-buffer, simply use message-kill-buffer.
2024-03-02update IDEAS.orgDirk-Jan C. Binnema
And refer to it in the RFE issue template.
2024-03-01mu4e-view: use <mouse-2> for linksDirk-Jan C. Binnema
Only <mouse-2>, to be consistent with eww.
2024-03-01tests: add some very basic CLD2_TESTDirk-Jan C. Binnema
just to check if it works at all; no need to check cld2 at all.
2024-03-01NEWS.org: updateDirk-Jan C. Binnema