<div>
<p dir="auto">On 15 Jul 2015, at 0:21, Shoshanna Green wrote:</p>

<blockquote style="border-left-color: #136BCE; border-left-style: solid; border-left-width: 2px; color: #136BCE; margin: 0 0 5px; padding-left: 5px">
<p dir="auto">On 13 Jul 2015, at 19:01, Benny Kjær Nielsen wrote:</p>

<blockquote style="border-left-color: #4B89CF; border-left-style: solid; border-left-width: 2px; color: #4B89CF; margin: 0 0 5px; padding-left: 5px">
<p dir="auto">On 13 Jul 2015, at 15:57, Shoshanna Green wrote:</p>

<blockquote style="border-left-color: #4B89CF; border-left-style: solid; border-left-width: 2px; color: #4B89CF; margin: 0 0 5px; padding-left: 5px">
<p dir="auto">Is there any way to have MailMate check recipients against a list of approved addresses more directly?</p>
</blockquote>

<p dir="auto">I think you might have answered this question yourself. Create a draft in an otherwise empty IMAP mailbox, put the email addresses in the body of the messages, and then create a check using a condition like:</p>

<pre style="background: #E4E4E4; border: thin solid gray; margin-left: 15px; margin-right: 15px; overflow: auto; padding: 5px"><code>#recipient.address ~ $UUID.#unquoted
</code></pre>

<p dir="auto">(Use the UUID of the IMAP mailbox. Put it on the pasteboard using ⌘C after selecting the mailbox.)</p>

<p dir="auto">But I don't know if that really works. It tests a comparison method which is not available using the GUI and it has undergone little testing.</p>
</blockquote>

<p dir="auto">Darn it, I was all excited about this, but I created the mailbox, the message with the list of addresses, and the condition check, and hitting SEND on a test message produced a spinning pizza followed by a crash.</p>
</blockquote>

<p dir="auto">My quick attempt to reproduce this crash failed.</p>

<blockquote style="border-left-color: #136BCE; border-left-style: solid; border-left-width: 2px; color: #136BCE; margin: 0 0 5px; padding-left: 5px">
<p dir="auto">Back to the old kludge, I guess, but I hope something better will be possible someday!</p>
</blockquote>

<p dir="auto">If your draft is line separated like this:</p>

<pre style="background: #E4E4E4; border: thin solid gray; margin-left: 15px; margin-right: 15px; overflow: auto; padding: 5px"><code>foo@bar.com
bar@foo.com
</code></pre>

<p dir="auto">Then I think this might work:</p>

<pre style="background: #E4E4E4; border: thin solid gray; margin-left: 15px; margin-right: 15px; overflow: auto; padding: 5px"><code>#recipient.address =[c] $UUID.#unquoted
</code></pre>

<p dir="auto">This is because <code>#unquoted</code> is actually split into 1 value per paragraph.</p>

<p dir="auto">-- <br>
Benny</p>

</div>