<div class="markdown">
<p dir="auto">On 24 Apr 2016, at 1:26, Benny Kjær Nielsen wrote:</p>

<blockquote>
<p dir="auto">On 20 Apr 2016, at 16:29, Shoshanna Green wrote:</p>

<blockquote>
<p dir="auto">What I need is "Any recipient, considered individually, does not contain corporate.com."<br>
Is there any way to build such a condition in MailMate?</p>
</blockquote>

<p dir="auto">It's possible, but it's not available in the GUI. But since you need it for message verification then that might not matter to you. Here is an example matching messages with no <code>\\Seen</code> flag:</p>

<pre><code>#flags.flag !=[x] '\\Seen'
</code></pre>

<p dir="auto">Note the <code>[x]</code> which is short for <code>eXclusive</code>. It means the comparison must be true for all values (which usually makes the most sense for not-equal comparisons).</p>

<p dir="auto">(It's possible to edit <code>Mailboxes.plist</code> to add this to smart mailboxes as well, but it is lost if editing the mailbox with the GUI.)</p>
</blockquote>

<p dir="auto">I think I've got this working (once I worked out that what I need to do is delete the [x] part). Thanks!</p>

<p dir="auto">I manually coded the conditions as a smart mailbox for testing, and naturally I tried opening its conditions in the GUI to see what would happen. The number of messages in the smart mailbox changed as I did so, indicating that the conditions had changed; but when I closed MailMate and checked the smart mailbox's definition in Mailboxes.plist, it seemed unchanged, which is strange to me. Did I miss something?</p>

<p dir="auto">Somewhat on the same topic, what does the '[c]' condition mean? I have some smart mailboxes defined with the condition "[From] [contains] [<a href="mailto:me@example.com">me@example.com</a>]" in the GUI , but when I inspect their definitions in Mailboxes.plist, some have "from ~ '<a href="mailto:me@example.com">me@example.com</a>'" and others have "from ~[c] '<a href="mailto:me@example.com">me@example.com</a>'", even though the conditions are shown identically in the GUI. </p>

<p dir="auto">Shoshanna Green<br>
<a href="mailto:shoshannag@gmail.com">shoshannag@gmail.com</a></p>

</div>