<div class="markdown">
<p dir="auto">On 19 May 2014, at 19:51, David Rees wrote:</p>

<blockquote>
<p dir="auto">FYI, I created a simple clone of the Correspondence layout that shows<br>
emails with the same tag as the current email.<br>
<a href="https://gist.github.com/studgeek/37139cac136815744dad">https://gist.github.com/studgeek/37139cac136815744dad</a></p>

<p dir="auto">It also sometimes shows all emails if the current email doesn't have a tag,<br>
not sure why that only happens sometimes or how to just show nothing when<br>
there are no tags.</p>
</blockquote>

<p dir="auto">Hmm, that might be a bug (I'll note that). You can probably partly fix it by doing like this:</p>

<pre><code>transformation = "$ALL_MESSAGES.filter(##tags exists and ##tags = $mainOutline.##tags)";
</code></pre>

<p dir="auto">Note that this only works well when assigning a single tag to each message. I don't think there is a way to fix that. In theory this would work, but I haven't tried it:</p>

<pre><code>transformation = "$ALL_MESSAGES.filter(#flags.flag = $mainOutline.#flags.flag)";
</code></pre>

<p dir="auto">(And if it works then I could improve <code>##tags</code> to work as well by defining a <code>tag</code> specifier similar to <code>flag</code>.)</p>

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

</div>