<!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">On 30 Oct 2022, at 8:51, aisrael wrote:</p>
</div><div class="plaintext" style="white-space: normal;"><blockquote style="margin: 0 0 5px; padding-left: 5px; border-left: 2px solid #777777; color: #777777;"><p dir="auto">Regarding “Use Colour in Message List”, I see a different behavior  (I use v5898) : when I right-click on a maibox name (whether real or smart), “Use Colour in Message List” is grayed. I remember once I was able to change the color (can’t remember how), but the only change was the color of the mailbox icon, all the messages remained black (or white, depending…).
<br>
I would love to be able to change the color of the mails in the Message list of any given mailbox. How can I do that?</p>
</blockquote></div>
<div class="markdown" style="white-space: normal;">
<p dir="auto">“Use Colour in Message List” is grayed for me as well. I can still get some kind of colorization to work through using both the Hidden Preference command in Terminal:</p>
<p dir="auto">defaults write com.freron.MailMate MmMessageColorsEnabled -bool YES</p>
<p dir="auto">and through a file named “Styles.plist” located in ~/Library/Application\ Support/MailMate/</p>
<p dir="auto">I don’t know if it is standard issue when MailMate starts up the first time, or if I was playing around with things that I saw in the <em>Hidden Preferences</em> portion of the MailMate Help. [When I ?need? to procrastinate, I am a tinkerer.]   What mine had in it is:</p>
<hr style="border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc);">
<pre style="margin-left: 15px; margin-right: 15px; padding: 5px; background-color: #F7F7F7; border-radius: 5px 5px 5px 5px; overflow-x: auto; max-width: 90vw;"><code style="margin: 0 0; border-radius: 3px; background-color: #F7F7F7; padding: 0px;">{   styles = (
        {   type = keyword;
                keyword = '\\Flagged';
                color = "#00FF00";
                fontStyle = "bold";
        },
        {   type = mailbox;
                color = "#00FFFF";
                uuid = 'INBOX';
                fontStyle = "italic"; // boldAndItalic can also be used
        },
        {   /*disabled = ":true";*/
                type = filter;
                color = "#FF0000";
                uuid = '0249F96D-9B86-452A-B34A-83D83B0125FE';
        },
);
</code></pre>
<p dir="auto">}</p>
<hr style="border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc);">
<p dir="auto">I just changed the first two blocks to:</p>
<hr style="border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc);">
<pre style="margin-left: 15px; margin-right: 15px; padding: 5px; background-color: #F7F7F7; border-radius: 5px 5px 5px 5px; overflow-x: auto; max-width: 90vw;"><code style="margin: 0 0; border-radius: 3px; background-color: #F7F7F7; padding: 0px;">{   type = keyword;
                keyword = '\\Flagged';
                color = “systemRedcolor”;
                fontStyle = "bold";
        },
{   type = mailbox;
                color = "systemBlueColor";
                uuid = 'INBOX';
                fontStyle = "italic"; // boldAndItalic can also be used
        },
</code></pre>
<hr style="border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc);">
<p dir="auto">and added</p>
<hr style="border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc);">
<pre style="margin-left: 15px; margin-right: 15px; padding: 5px; background-color: #F7F7F7; border-radius: 5px 5px 5px 5px; overflow-x: auto; max-width: 90vw;"><code style="margin: 0 0; border-radius: 3px; background-color: #F7F7F7; padding: 0px;">{   type = mailbox;
                color = "systemGreenColor";
                uuid = ‘ARCHIVE;
                fontStyle = “regular”;
        },
</code></pre>
<hr style="border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc);">
<p dir="auto">and the message listings in the Inbox are now all blue italic (upon restart of MailMate), and the message listing of all flagged messages (besides having the flag) are in bold red. The message listing of all archived messages are in green, regular font. At first I wondered why I would do that, but now I see why. If I look in a smart mailbox, I can see by a glance the color of the message listing that some are still in the Inbox and some are flagged and some have been archived.</p>
<p dir="auto">I think that I will take the ‘italic’ off, because the mailbox now looks to alarming, which means that I’ll have to procrastinate, and start tinkering…and then maybe disable something about MailMate that I need. ;-)</p>
<p dir="auto">All the best,<br>
Ed</p>

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

</html>