<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body><div style="font-family: sans-serif;"><div class="markdown" style="white-space: normal;">
<p dir="auto">Dear All,</p>
<p dir="auto">I am using version 1.14 (6019, testing).</p>
<p dir="auto">In our workgroup we are using a shared IMAP account, most of us with Thunderbird (and its color tags).<br>
That’s fine, I can display the TB tags in MM.</p>
<p dir="auto">Now I found <a href="https://manual.mailmate-app.com/hidden_preferences">https://manual.mailmate-app.com/hidden_preferences</a> ("Colored Messages") .. that’s really cool.</p>
<p dir="auto">So I enabled the feature:</p>
<pre style="margin-left: 15px; margin-right: 15px; padding: 5px; border: thin solid gray; overflow-x: auto; max-width: 90vw; background-color: #F7F7F7;"><code style="padding: 0 0.25em; background-color: #F7F7F7;"># set
defaults write com.freron.MailMate MmMessageColorsEnabled -bool YES

# check
defaults read com.freron.MailMate | grep MmMessageColorsEnabled
    MmMessageColorsEnabled = 1;
</code></pre>
<p dir="auto">I also created <code style="padding: 0 0.25em; background-color: #F7F7F7;">~/Library/Application Support/MailMate/Styles.plist</code> just as described with the following (test) content (with MM being closed).</p>
<pre style="margin-left: 15px; margin-right: 15px; padding: 5px; border: thin solid gray; overflow-x: auto; max-width: 90vw; background-color: #F7F7F7;"><code style="padding: 0 0.25em; background-color: #F7F7F7;">{
    styles = (
        {
            type = keyword;
            keyword = '01.wichtig';
            color = "#FF0000";
            fontStyle = "bold"; // boldAndItalic can also be used
        },
        {
            type = keyword;
            keyword = '04.comp';
            color = "#1080CE";
        },
        {
            type = keyword;
            keyword = '\\Flagged';
            color = "#1080CE";
            fontStyle = "italic"; // boldAndItalic can also be used
        }
    );
}
</code></pre>
<p dir="auto">’01.wichtig’ and ’04.comp’ do exist and are shown in "Tags" and "Raw Tags".</p>
<p dir="auto">But none of these styles is applied .. it seems that the file is not even read.<br>
I introduced errors to trigger a warning or so, but simply nothing happens.</p>
<p dir="auto">Any ideas what I am doing wrong is highly appreciated :-)</p>
<p dir="auto">best,<br>
Sven</p>

</div>
</div>
</body>

</html>