Re: [MlMt] coloring advice

2019-10-14 Thread Xebar Saram
Thx once again

i pasted your exact code and made sure the CLI config was enabled but alas
couldn’t get the bold to show up (actually cant get the colors to show).
also made sure the `bold for unread messages` is checked so still very
confused now :)
any other setting files that are maybe overwriting these? Would love any
help to try and debug this

thx a lot again , really appreciate it

Z
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate


Re: [MlMt] coloring advice

2019-10-11 Thread Glenn Parker
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).


If you use my exact plist file, *and* enable the **Bold font for unread 
messages** checkbox in the MailMate **Preferences** under the **Viewer** 
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.


{   styles = (
{   type = keyword;
keyword = ‘\\Flagged';
color = "#FF";
},
{type = keyword;
keyword = ‘\\Seen';
color = "#88";
},
);
}

Just in case you missed this, remember that you also need to execute the 
following command from a shell prompt:


defaults write com.freron.MailMate MmMessageColorsEnabled -bool YES

On 10 Oct 2019, at 22:24, Xebar Saram wrote:


thx again Glenn, truly appreciate the help

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


this is the current pref file state

{   styles = (

{ type = keyword;
keyword = '\\Unseen';
color = "#FFDBAC";
fontStyle = "bold";
},

{   type = mailbox;
color = "#00";
  // fontStyle = "bold";
uuid = 'INBOX:ikloog%40gmail@imap.gmail.com';
},

{   type = mailbox;
color = "#1C3B91";
  //  fontStyle = "bold";
uuid = 'INBOX:mssmcampus%5ckloog...@imap.mssm.edu';
},


);
}


thx again

Z



Glenn P. Parker
glenn.par...@comcast.net
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate


Re: [MlMt] coloring advice

2019-10-10 Thread Xebar Saram
Sure Alexndre

its here

https://manual.mailmate-app.com/hidden_preferences

look for the section : Colored Messages

best

Z

On Thu, Oct 10, 2019 at 5:16 PM Alexandre Takacs 
wrote:

> Hi
>
> On 10 Oct 2019, at 20:55, Robert Brenstein wrote:
>
> > i used the excellent hidden pref guide to color my mails based on
> > source. Here is the current plist file:
> >
> > /Users/zeltak/Library/Application Support/MailMate/Styles.plist
>
> Sorry but I muss have missed that guide - may I ask for pointer ?
>
> Thanks
>
> A. Takacs
> ___
> mailmate mailing list
> mailmate@lists.freron.com
> https://lists.freron.com/listinfo/mailmate
>
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate


Re: [MlMt] coloring advice

2019-10-10 Thread Xebar Saram
thx again Glenn, truly appreciate the help

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

this is the current pref file state

{   styles = (

{ type = keyword;
keyword = '\\Unseen';
color = "#FFDBAC";
fontStyle = "bold";
},

{   type = mailbox;
color = "#00";
  // fontStyle = "bold";
uuid = 'INBOX:ikloog%40gmail@imap.gmail.com';
},

{   type = mailbox;
color = "#1C3B91";
  //  fontStyle = "bold";
uuid = 'INBOX:mssmcampus%5ckloog...@imap.mssm.edu';
},


);
}


thx again

Z

On Thu, Oct 10, 2019 at 3:28 PM Glenn Parker 
wrote:

> Xebar,
>
> You need to use a *double* backslash on the ‘\\Seen’ keyword specifier.
> Sorry, but MailMate munged my original plist because I didn’t put it in a
> pre-formatted text block. It should look like this:
>
> {   styles = (
> {   type = keyword;
> keyword = ‘\\Flagged';
> color = "#FF";
> },
> {type = keyword;
> keyword = ‘\\Seen';
> color = "#88";
> },
> );
> }
>
> On 10 Oct 2019, at 15:18, Xebar Saram wrote:
>
> Thx guys
>
> glen i tried your method:
>
> { styles = (
> { type = mailbox;
> color = "#00";
> // fontStyle = "bold";
> uuid = 'INBOX:ikloog%40gmail@imap.gmail.com';
> },
> { type = mailbox;
> color = "#1C3B91";
> // fontStyle = "bold";
> uuid = 'INBOX:mssmcampus%5ckloog...@imap.mssm.edu';
> },
>
> { type = keyword;
> keyword = '\Seen';
> color = "#88";
> },
>
> );
> }
>
>
>
> bus still the new mail (unreads) are still normal color. I can see the dot
> in the "read" column yet that’s the only indication i get for unread mail
>
>
> appreciate your help
>
> Z
>
> Glenn P. Parker
> glenn.par...@comcast.net
> ___
> mailmate mailing list
> mailmate@lists.freron.com
> https://lists.freron.com/listinfo/mailmate
>
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate


Re: [MlMt] coloring advice

2019-10-10 Thread Alexandre Takacs

Hi

On 10 Oct 2019, at 20:55, Robert Brenstein wrote:

i used the excellent hidden pref guide to color my mails based on 
source. Here is the current plist file:


/Users/zeltak/Library/Application Support/MailMate/Styles.plist


Sorry but I muss have missed that guide - may I ask for pointer ?

Thanks

A. Takacs
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate


Re: [MlMt] coloring advice

2019-10-10 Thread Glenn Parker

Xebar,

You need to use a *double* backslash on the ‘\\\Seen’ keyword 
specifier.  Sorry, but MailMate munged my original plist because I 
didn’t put it in a pre-formatted text block.  It should look like 
this:


{   styles = (
{   type = keyword;
keyword = ‘\\Flagged';
color = "#FF";
},
{type = keyword;
keyword = ‘\\Seen';
color = "#88";
},
);
}

On 10 Oct 2019, at 15:18, Xebar Saram wrote:


Thx guys

glen i tried your method:

{   styles = (
{   type = mailbox;
color = "#00";
  // fontStyle = "bold";
uuid = 'INBOX:ikloog%40gmail@imap.gmail.com';
},
{   type = mailbox;
color = "#1C3B91";
  //  fontStyle = "bold";
uuid = 'INBOX:mssmcampus%5ckloog...@imap.mssm.edu';
},

{ type = keyword;
keyword = '\Seen';
color = "#88";
},

);
}



bus still the new mail (unreads) are still normal color. I can see the 
dot in the "read" column yet that’s the only indication i get for 
unread mail



appreciate your help

Z


Glenn P. Parker
glenn.par...@comcast.net
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate


Re: [MlMt] coloring advice

2019-10-10 Thread Xebar Saram
Thx guys

glen i tried your method:

{   styles = (
{   type = mailbox;
color = "#00";
  // fontStyle = "bold";
uuid = 'INBOX:ikloog%40gmail@imap.gmail.com';
},
{   type = mailbox;
color = "#1C3B91";
  //  fontStyle = "bold";
uuid = 'INBOX:mssmcampus%5ckloog...@imap.mssm.edu';
},

{ type = keyword;
keyword = '\Seen';
color = "#88";
},

);
}



bus still the new mail (unreads) are still normal color. I can see the dot
in the "read" column yet that’s the only indication i get for unread mail


appreciate your help

Z

On Thu, Oct 10, 2019 at 2:55 PM Robert Brenstein <
mailm...@learning-insights.eu> wrote:

> could the double hash be a problem?
>
> On 10 Oct 2019, at 17:27, Xebar Saram wrote:
>
> Hi all
>
> i used the excellent hidden pref guide to color my mails based on
> source. Here is the current plist file:
> /Users/zeltak/Library/Application Support/MailMate/Styles.plist
>
>
> {   styles = (
> {   type = mailbox;
> color = "#00";
>   // fontStyle = "bold";
> uuid = 'INBOX:ikloog%40gmail@imap.gmail.com';
> },
> {   type = mailbox;
> color = "#1C3B91";
>   //  fontStyle = "bold";
> uuid = 'INBOX:mssmcampus%5ckloog...@imap.mssm.edu';
> },
>
> {   type = keyword;
> keyword = 'Unread';
>color = "##FF2D00";
>fontStyle = "bold";
> },
> );
> }
>
> the color per uuid mailbox works great. What i cant figure out is how to
> mark unread mails with bold and color. That dosent seem to work. Can anyone
> look at my current code in the plist file and tell me what im missing?
>
> best
>
> Z
>
> ___
> mailmate mailing list
> mailmate@lists.freron.com
> https://lists.freron.com/listinfo/mailmate
>
> ___
> mailmate mailing list
> mailmate@lists.freron.com
> https://lists.freron.com/listinfo/mailmate
>
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate


Re: [MlMt] coloring advice

2019-10-10 Thread Robert Brenstein
could the double hash be a problem?

On 10 Oct 2019, at 17:27, Xebar Saram wrote:

> Hi all
>
> i used the excellent hidden pref guide to color my mails based on
> source. Here is the current plist file:
> /Users/zeltak/Library/Application Support/MailMate/Styles.plist
>
>
> {   styles = (
> {   type = mailbox;
> color = "#00";
>   // fontStyle = "bold";
> uuid = 'INBOX:ikloog%40gmail@imap.gmail.com';
> },
> {   type = mailbox;
> color = "#1C3B91";
>   //  fontStyle = "bold";
> uuid = 'INBOX:mssmcampus%5ckloog...@imap.mssm.edu';
> },
>
> {   type = keyword;
> keyword = 'Unread';
>color = "##FF2D00";
>fontStyle = "bold";
> },
> );
> }
>
> the color per uuid mailbox works great. What i cant figure out is how to
> mark unread mails with bold and color. That dosent seem to work. Can anyone
> look at my current code in the plist file and tell me what im missing?
>
> best
>
> Z


> ___
> mailmate mailing list
> mailmate@lists.freron.com
> https://lists.freron.com/listinfo/mailmate
___
mailmate mailing list
mailmate@lists.freron.com
https://lists.freron.com/listinfo/mailmate