diff --git a/FAQ.md b/FAQ.md index c8699ab0a5..8b18652bd6 100644 --- a/FAQ.md +++ b/FAQ.md @@ -1294,6 +1294,10 @@ This will result in searching in the subject or text (only) like this: ("apple" AND "banana" AND NOT "cherry") OR "nuts" ``` +This will **only** work for searching on the server! + +
+ Since version 1.1980 it is possible to use these prefixes as a search expression: ``` @@ -1306,6 +1310,10 @@ keyword: There should be no space between the prefix and the search term, which will be applied as an AND-condition. +This will **only** work for searching on the server! + +
+ Only AND conditions (+) and NOT conditions (-) can be used for on-device searching (since version 1.1981). If you try to use other search expressions, you get the error *Select a folder for a complex search*, which means that a folder in an account's folder list must be selected in order to perform the search on the server. diff --git a/index.html b/index.html index 1de879d42d..41b61aa281 100644 --- a/index.html +++ b/index.html @@ -859,6 +859,8 @@ openssl pkcs12 -export -legacy -in certbag.pem >legacy.p12
apple +banana -cherry ?nuts

This will result in searching in the subject or text (only) like this:

("apple" AND "banana" AND NOT "cherry") OR "nuts"
+

This will only work for searching on the server!

+


Since version 1.1980 it is possible to use these prefixes as a search expression:

from:<email address>
 to:<email address>
@@ -866,6 +868,8 @@ cc:<email address>
 bcc:<email address>
 keyword:<keyword>

There should be no space between the prefix and the search term, which will be applied as an AND-condition.

+

This will only work for searching on the server!

+


Only AND conditions (+) and NOT conditions (-) can be used for on-device searching (since version 1.1981). If you try to use other search expressions, you get the error Select a folder for a complex search, which means that a folder in an account’s folder list must be selected in order to perform the search on the server.


Since version 1.1733 it is possible to save searches, which means that a named entry in the navigation menu will be created to repeat the same search later. You can save a search after searching by tapping on the save button in the top action bar. After repeating a search there will be a delete button at the same place to delete a saved search again. A saved search might be useful to quickly search for starred messages, or for messages from a specific email address, etc.