]> git.cworth.org Git - notmuch-wiki/commitdiff
Merge branch 'master' of git://notmuchmail.org/git/notmuch-wiki
authorDavid Bremner <david@tethera.net>
Sun, 20 Aug 2017 17:41:38 +0000 (14:41 -0300)
committerDavid Bremner <david@tethera.net>
Sun, 20 Aug 2017 17:41:38 +0000 (14:41 -0300)
faq.mdwn
howto.mdwn
news/release-0.24.2.mdwn [new file with mode: 0644]
news/release-0.24.mdwn
news/release-0.25.mdwn [new file with mode: 0644]
notmuch-emacs.mdwn
wikiwriteaccess.mdwn

index 2558eb3869a9f9566bc91dca0ca5c4282e57010c..6862685841982e3390179d6b3571bd075f3eaf71 100644 (file)
--- a/faq.mdwn
+++ b/faq.mdwn
@@ -54,6 +54,14 @@ searches. Punctuation is mostly ignored.
 The boolean prefix searches (see Boolean and Probabilistic Prefixes in the man
 page), such as tag: or path: searches, need an exact match.
 
+## How do I search for folders or paths with spaces?
+
+The spaces in the names must be escaped. For example if you use bash or zsh,
+you can search for messages with tag `foo` in folder `INBOX/folder with spaces`
+with this query:
+
+        $ notmuch search tag:foo 'folder:"INBOX/folder with spaces"'
+
 ## How do I search for the `List-Id:` header?
 
 Currently there is no way to search for `List-Id:`. As a workaround, try using a
index ba5b44cb88d60898be8daa5de60a534ad7577a6e..f78a28a9a0bdea78f77cb3e1837ab8e9944161a1 100644 (file)
@@ -143,3 +143,6 @@ in a scenario where you have encrypted your hard disk anyway and are
 comfortable with the security implications (and until notmuch can index
 encrypted email itself).
 
+## Translations
+
+- A translation of this page into [[Russian|howto-ru]]
diff --git a/news/release-0.24.2.mdwn b/news/release-0.24.2.mdwn
new file mode 100644 (file)
index 0000000..6838dae
--- /dev/null
@@ -0,0 +1,14 @@
+[[!meta date="2017-06-01"]]
+
+Notmuch 0.24.2 (2017-06-01)
+===========================
+
+Command Line Interface
+----------------------
+
+Fix output from `notmuch dump --include=properties` to not include tags.
+
+Emacs
+-----
+
+Fix filename stashing in tree view.
index f1fc8d817ab05cbea45fe90babcd576ffbe4f3a9..0f01c2f61dde579a60872a0ab8326b7c04c7252a 100644 (file)
@@ -20,6 +20,13 @@ You can now add your own `notmuch-` prefixed commands in PATH, and
 have notmuch run them as if they were notmuch commands. See the
 `notmuch(1)` man page for details
 
+### New default output format to 3
+
+See devel/schemata for details. Users of the structured output
+format are reminded of the `--format-version` argument to `notmuch
+show` and `notmuch search` which can prevent breakage when the
+default format changes.
+
 Emacs
 -----
 
@@ -49,10 +56,10 @@ customize `notmuch-address-save-filename`.
 ### Tag jump menu
 
 It is now possible to configure tagging shortcuts (with an interface
-like notmuch jump). For example (by default) `k u` will remove the
-unread tag, and `k s` will add a tag "spam" and remove the inbox
-tag. Pressing `k` twice will do the reverse operation so, for example,
-`k k s` removes the spam tag and adds the inbox tag. See the customize
+like notmuch jump). For example (by default) k u will remove the
+unread tag, and k s will add a tag "spam" and remove the inbox
+tag. Pressing k twice will do the reverse operation so, for example,
+k k s removes the spam tag and adds the inbox tag. See the customize
 variable `notmuch-tagging-keys` for more information.
 
 ### Refresh all buffers
diff --git a/news/release-0.25.mdwn b/news/release-0.25.mdwn
new file mode 100644 (file)
index 0000000..dcb321f
--- /dev/null
@@ -0,0 +1,51 @@
+[[!meta date="2017-07-25"]]
+
+Notmuch 0.25 (2017-07-25)
+=========================
+
+General
+-------
+
+Add regexp searching for mid, paths, and tags.
+
+### Skip HTML tags when indexing
+
+In particular this avoids indexing large inline images.
+
+Command Line Interface
+----------------------
+
+Bash completion is now installed to /usr/share by default.
+
+Allow space as separator for keyword arguments.
+
+Emacs
+-----
+
+### Support for stashing message timestamp in show and tree views
+
+Invoking `notmuch-show-stash-date` with a prefix argument
+stashes the unix timestamp of the current message instead of
+the date string.
+
+Don't use 'function' as variable name, workaround emacs bug 26406.
+
+Library Changes
+---------------
+
+### Add workaround for date parsing of bad input in older GMime
+
+In certain circumstances, older GMime libraries could return
+negative numbers when parsing syntactically invalid dates.
+
+### Replace deprecated functions with status returning versions
+
+API of notmuch_query_{search,count}_{messages,threads} has
+changed.  notmuch_query_add_tag_exclude now returns a status
+value.
+
+Add support for building against GMime 3.0.
+
+Rename libutil.a to libnotmuch_util.a.
+
+libnotmuch SONAME is incremented to libnotmuch.so.5.
index 6b7eccd17e74fe01fe738afbaef7030252e7ce36..d14a5c4841316029afb6ef0385b1b54fcb1f47b7 100644 (file)
@@ -91,7 +91,7 @@ When composing new messages, you will be entered in Emacs's
 messages.  When in message mode, you can type `C-c ?` for help.
 
 If you would like to use address autocompletion when composing
-messages, see [address completion](emacstips#index13h2).
+messages, see [address completion](/emacstips#index13h2).
 
 When you are ready to send a message, type `C-c C-c`. By default
 message mode will use your sendmail command to send mail, so make sure
index 3d84772d846b8ac3c564661985bf47cf547db208..8d9c38ae17068e2a5a81f0e15ea9de7a56899da1 100644 (file)
@@ -6,7 +6,7 @@ source can be checked out via git with this command:
 
         git clone git://notmuchmail.org/git/notmuch-wiki
 
-Then you can edit the wiki content locally. To publish your changes,
+Then you can edit the website content locally. To publish your changes,
 commit the changes with:
 
         git add _any-new-files_