@bobfrankston/rmfmail 1.2.196 → 1.2.198
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 +10 -6
- package/client/app.bundle.js.map +2 -2
- package/client/help/search-help.js +10 -6
- package/client/help/search-help.js.map +1 -1
- package/client/help/search-help.ts +10 -6
- package/client/package.json +1 -1
- package/package.json +5 -5
- 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/db.d.ts.map +1 -1
- package/packages/mailx-store/db.js +43 -1
- package/packages/mailx-store/db.js.map +1 -1
- package/packages/mailx-store/db.ts +39 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store-web/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-50260 → node_modules.npmglobalize-stash-64668}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -6767,7 +6767,7 @@ decides which operators work.</p>
|
|
|
6767
6767
|
<tr><th>Operator</th><th>Example</th><th>Meaning</th></tr>
|
|
6768
6768
|
<tr><td>implicit AND</td><td><code>bob lunch</code></td><td>Both terms must appear</td></tr>
|
|
6769
6769
|
<tr><td><code>OR</code></td><td><code>bob OR eleanor</code></td><td>Either term</td></tr>
|
|
6770
|
-
<tr><td><code>NOT</code></td><td><code>bob NOT spam</code></td><td>
|
|
6770
|
+
<tr><td><code>NOT</code></td><td><code>bob NOT spam</code></td><td>Exclude a term. Works anywhere, including first: <code>NOT newsletter</code>, <code>NOT from:noreply</code>, <code>NOT is:read</code>. Uppercase \u2014 a lowercase "not" searches for the word.</td></tr>
|
|
6771
6771
|
<tr><td><code>"phrase"</code></td><td><code>"happy birthday"</code></td><td>Exact phrase</td></tr>
|
|
6772
6772
|
<tr><td><code>term*</code></td><td><code>lunch*</code></td><td>Prefix</td></tr>
|
|
6773
6773
|
<tr><td><code>NEAR(a b, 5)</code></td><td><code>NEAR(bob lunch, 5)</code></td><td>Both within 5 tokens</td></tr>
|
|
@@ -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
|