<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">On 6 Jun 2018, at 18:30, Shoshanna Green wrote:</p>

</div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">     conditions = "(from ~[c] 'my_private_address@example.com' and<br>
                             #recipient.address IS NOT AMONG<br>
                                                      friend_1@example.com,<br>
                                                      friend_2@example.com,<br>
                                                      friend_3@example.com,<br>
                                                      friend_4@example.com)"</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto">Well, if it's hardcoded then you can do <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">(#recipient.address != 'friend_1@example.com' and #recipient.address != 'friend_2@example.com' and ...)</code></p>

</div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">but this is awkward to read and maintain, especially since the actual list of approved recipients is more than 130 addresses long. I'd much rather have it in MessageVerifications.plist than in the header of a dummy email message, if possible!</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto">It might not be much better, but you could have a mailbox (IMAP or maybe a smart mailbox based on a tag) and then do:</p>

</div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">     conditions = "(from ~[c] 'my_private_address@example.com' and #recipient.address != $UUID.#recipient.address)";</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto">Replace the <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">UUID</code> with the value you get on the pasteboard if you select the mailbox and hit ⌘C.</p>

<p dir="auto">-- <br>
Benny<br>
<a href="https://freron.com/become_a_mailmate_patron/" style="color:#3983C4">https://freron.com/become_a_mailmate_patron/</a></p>
</div>
</div>
</body>
</html>