The MailMate Help > [Low Level Customization](file:///Applications/MailMate.app/Contents/Resources/English.lproj/MailMate%20Help/customization.html) page of the MailMate manual talks about editing Mailbox Icons by editing:

        ~/Library/Application Support/MailMate/Mailboxes.plist

I noticed that the recommend paths have changed in Mail for Mavericks 10.9. Each of the ".png" files referenced is now a ".tiff" file. If you use the following, it should work just fine.

        deltaMailboxes =
        (
{ imagePath = "/Applications/Mail.app/Contents/Resources/InMailbox.tiff";
                        uuid = "INBOX";
                },
{ imagePath = "/Applications/Mail.app/Contents/Resources/DraftsMailbox.tiff";
                        uuid = "DRAFTS";
                },
{ imagePath = "/Applications/Mail.app/Contents/Resources/SentMailbox.tiff";
                        uuid = "SENT";
                },
{ imagePath = "/Applications/Mail.app/Contents/Resources/JunkMailbox.tiff";
                        uuid = "JUNK";
                },
{ imagePath = "/Applications/Mail.app/Contents/Resources/TrashMailbox.tiff";
                        uuid = "TRASH";
                }
        );

_______________________________________________
mailmate mailing list
[email protected]
http://lists.freron.com/listinfo/mailmate

Reply via email to