Compare commits

...

3 Commits

Author SHA1 Message Date
M66B be4802bccc Updated FAQ 2024-04-22 15:18:19 +02:00
M66B c0e2a360ee b 2024-04-22 13:03:15 +02:00
M66B 58199e930f 1.2176 release 2024-04-22 13:02:00 +02:00
6 changed files with 2985 additions and 17 deletions

View File

@ -6,6 +6,11 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
### [Zby](https://en.wikipedia.org/wiki/Zby)
### 1.2176 - 2024-04-22
* Fixed British English translation
* Small improvements and minor bug fixes
### 1.2175 - 2024-04-20
* Fixed primary inbox navigation

17
FAQ.md
View File

@ -2755,20 +2755,21 @@ Please [see here](https://ezylang.github.io/EvalEx/references/references.html) a
The following extra variables are available:
* from (array)
* to (array)
* subject
* text
* hasAttachments
* *from* (array)
* *to* (array)
* *subject* (string)
* *text* (string)
* *hasAttachments* (boolean)
The following extra operators are available:
* contains
* matches (=regex)
* *contains* (contains substring)
* *matches* (matches regex)
The following extra functions are available:
* header(name)
* *header(name)* (returns an array of header values for the named header)
* *blocklist()* (returns a boolean indicating if the sender/server is on a DNS blocklist; since version 1.2176)
Example condition:

View File

@ -3,7 +3,7 @@ apply plugin: 'com.bugsnag.android.gradle'
apply plugin: 'kotlin-android'
apply plugin: 'de.undercouch.download'
def getVersionCode = { -> return 2175 }
def getVersionCode = { -> return 2176 }
def getRevision = { -> return "b" }
def getReleaseName = { -> return "Zby" }
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera

View File

@ -6,6 +6,11 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
### [Zby](https://en.wikipedia.org/wiki/Zby)
### 1.2176 - 2024-04-22
* Fixed British English translation
* Small improvements and minor bug fixes
### 1.2175 - 2024-04-20
* Fixed primary inbox navigation

View File

@ -1499,20 +1499,21 @@ X-Google-Original-From: Somebody &lt;somebody+extra@example.org&gt;</code></pre>
<p>Please <a href="https://ezylang.github.io/EvalEx/references/references.html">see here</a> about which constants, operators and functions are available.</p>
<p>The following extra variables are available:</p>
<ul>
<li>from (array)</li>
<li>to (array)</li>
<li>subject</li>
<li>text</li>
<li>hasAttachments</li>
<li><em>from</em> (array)</li>
<li><em>to</em> (array)</li>
<li><em>subject</em> (string)</li>
<li><em>text</em> (string)</li>
<li><em>hasAttachments</em> (boolean)</li>
</ul>
<p>The following extra operators are available:</p>
<ul>
<li>contains</li>
<li>matches (=regex)</li>
<li><em>contains</em> (contains substring)</li>
<li><em>matches</em> (matches regex)</li>
</ul>
<p>The following extra functions are available:</p>
<ul>
<li>header(name)</li>
<li><em>header(name)</em> (returns an array of header values for the named header)</li>
<li><em>blocklist()</em> (returns a boolean indicating if the sender/server is on a DNS blocklist; since version 1.2176)</li>
</ul>
<p>Example condition:</p>
<p><code>header("X-Mailer") contains "Open-Xchange" &amp;&amp; from matches ".*service@.*" &amp;&amp; !hasAttachments</code></p>

File diff suppressed because it is too large Load Diff