<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
<style>
div.markdown { white-space: normal; }
div.plaintext { white-space: normal; }
body { font-family: sans-serif; }
h1 { font-size: 1.4em; }
h2 { font-size: 1.2em; }
h3 { font-size: 1.1em; }
blockquote { margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777; }
blockquote blockquote { border-left-color: #999999; color: #999999; }
blockquote blockquote blockquote { border-left-color: #BBBBBB; color: #BBBBBB; }
a { color: #3983C4; }
blockquote a { color: #777777; }
blockquote blockquote a { color: #999999; }
blockquote blockquote blockquote a { color: #BBBBBB; }
pre { margin-left: 15px; margin-right: 15px; padding: 5px; background-color: #F7F7F7; border-radius: 5px 5px 5px 5px; overflow-x: auto; max-width: 90vw; }
code { margin: 0; padding: 0 0.4em; border-radius: 3px; background-color: #F7F7F7; }
pre > code { padding: 0px; }
math[display="inline"] > mrow { padding:5px; }
div.footnotes li p { margin: 0.2em 0; }
</style>
</head>
<body>
<div class="markdown">
<p dir="auto">AFAIK, the only way to make unread messages bold is through the Preferences.  There is no standard ‘\Unseen’ keyword, only ‘\Seen’.  The documentation for MailMate is weak in this area, but the keyword stuff is part of the IMAP standard for email servers (even then, there are deviations depending on your vendor).</p>

<p dir="auto">If you use my exact plist file, <em>and</em> enable the <strong>Bold font for unread messages</strong> checkbox in the MailMate <strong>Preferences</strong> under the <strong>Viewer</strong> tab, you should get unread messages showing up in bold with a different color.  Maybe you can tweak the configuration as desired once you get the basic feature working.</p>

<pre><code>{   styles = (
        {   type = keyword;
            keyword = ‘\\Flagged';
            color = "#FF6666";
        },
        {    type = keyword;
            keyword = ‘\\Seen';
            color = "#888888";
        },
    );
}
</code></pre>

<p dir="auto">Just in case you missed this, remember that you also need to execute the following command from a shell prompt:</p>

<pre><code>defaults write com.freron.MailMate MmMessageColorsEnabled -bool YES
</code></pre>

<p dir="auto">On 10 Oct 2019, at 22:24, Xebar Saram wrote:</p>

</div>
<div class="plaintext"><blockquote><p dir="auto">thx again Glenn, truly appreciate the help<br>
<br>
so this isnt working still. Also: i want to make the UNREAD messages bold and different color, is it Seen i need to use or perhaps Unseen? Is there documentation on this somewhere, couldn’t find any<br>
<br>
this is the current pref file state<br>
<br>
{   styles = (<br>
<br>
        { type = keyword;<br>
keyword = '\\Unseen';<br>
color = "#FFDBAC";<br>
fontStyle = "bold";<br>
},<br>
<br>
        {   type = mailbox;<br>
            color = "#000000";<br>
  // fontStyle = "bold";<br>
            uuid = 'INBOX:ikloog%40gmail.com@imap.gmail.com';<br>
        },<br>
<br>
        {   type = mailbox;<br>
            color = "#1C3B91";<br>
  //  fontStyle = "bold";<br>
            uuid = 'INBOX:MSSMCAMPUS%5Ckloogi01@imap.mssm.edu';<br>
        },<br>
<br>
<br>
    );<br>
}<br>
<br>
<br>
thx again<br>
<br>
Z</p>
</blockquote></div>
<div class="markdown">

<p dir="auto">Glenn P. Parker<br>
<a href="mailto:glenn.parker@comcast.net">glenn.parker@comcast.net</a></p>
</div>

</body>
</html>