@bobfrankston/rmfmail 1.2.197 → 1.2.199
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/android-bootstrap.bundle.js +72 -15
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +9 -5
- package/client/app.bundle.js.map +2 -2
- package/client/compose/compose.bundle.js +49 -1
- package/client/compose/compose.bundle.js.map +3 -3
- package/client/compose/editor.js +34 -0
- package/client/compose/editor.js.map +1 -1
- package/client/compose/editor.ts +29 -0
- package/client/compose/paste-markdown.js +0 -0
- package/client/compose/paste-markdown.js.map +1 -1
- package/client/compose/paste-markdown.ts +0 -0
- package/client/help/search-help.js +9 -5
- package/client/help/search-help.js.map +1 -1
- package/client/help/search-help.ts +9 -5
- package/client/package.json +1 -1
- package/package.json +9 -9
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +163 -14
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +122 -10
- package/packages/mailx-service/package.json +1 -1
- package/packages/mailx-store-web/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-11396 → node_modules.npmglobalize-stash-58008}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -6782,11 +6782,15 @@ instantly \u2014 no server hit, no FTS5, just substring match. Press <kbd>Enter<
|
|
|
6782
6782
|
to escalate to a full FTS5 search of the folder.</p>
|
|
6783
6783
|
|
|
6784
6784
|
<h3>Server search</h3>
|
|
6785
|
-
<p>Tick <strong>Server</strong> and the query goes to the mail server
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
|
|
6785
|
+
<p>Tick <strong>Server</strong> and the query goes to the mail server, using the
|
|
6786
|
+
<em>same syntax as local search</em>: <code>from:</code> / <code>to:</code> /
|
|
6787
|
+
<code>cc:</code> / <code>subject:</code>, <code>is:unread</code>-style flags,
|
|
6788
|
+
<code>after:</code> / <code>before:</code> / <code>date:</code>, quoted phrases,
|
|
6789
|
+
<code>OR</code>, and <code>NOT</code> (anywhere, including first) \u2014 all mapped
|
|
6790
|
+
onto IMAP's native SEARCH keys. Remaining text searches the body.
|
|
6791
|
+
<code>has:attachment</code> has no IMAP equivalent and is ignored server-side.
|
|
6792
|
+
Server search on Gmail accounts is not yet wired and currently returns local
|
|
6793
|
+
results only.</p>
|
|
6790
6794
|
|
|
6791
6795
|
<h3>Case sensitivity</h3>
|
|
6792
6796
|
<p>All three modes \u2014 local FTS5, IMAP server SEARCH, and <code>/regex/</code> \u2014
|