<div class="markdown">
<p dir="auto">On 18 May 2014, at 18:36, Rob McClure wrote:</p>

<blockquote>
<p dir="auto">Tried the modification to display tags in columns as noted in the ticket site and changed the code you supplied to use two of my tags. I get the column in my display but don't see anything in the column, even after adding one of the two chosen tags to a new message. attaching my plist.</p>
</blockquote>

<p dir="auto">It might not be the only problem, but I can see that your match-queries don't match:</p>

<pre><code>matchQueries = {
    isSomeOtherTag = "#flags.flag = 'Harmonization'";
    ...
};
</code></pre>

<p dir="auto">And then later:</p>

<pre><code>matchQuery = Harmonization;
</code></pre>

<p dir="auto">That last one should have been:</p>

<pre><code>matchQuery = isSomeOtherTag;
</code></pre>

<p dir="auto">(Or you should have renamed <code>isSomeOtherTag</code>.)</p>

<p dir="auto">Also, you should remove all other columns than <code>tag</code> from the file. MailMate merges your columns with the default columns and if you redefine all of them then you won't get any changes to the defaults in future MailMate updates.</p>

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

</div>