On 22 May 2025, at 21:04, Quinn Comendant via mailmate wrote:

Is there a way to display the *email address* instead of the *name* under the From column in message lists?

Only very low-level. If you create the following path and then save the attached file then you should have a new column available for the message list (named “From Address”):

/Users/<username>/Library/Application\ Support/MailMate/Resources/MmMessageListView/

--
Benny
{
        columns =
        {
                fromAddress =
                {
                        title = "From Address";
                        sortKey = "from.address";
                        formatting =
                        {
                                formatString = "${from.address}";
                                placeholderString = "(No Sender)";
                                doubleClick =
                                {
                                        titleImage = "NSUser";
                                        titleSymbol = "person.fill";
                                        titleFormatting = { prefixString = 
"From "; formatString = "“${from.address}”"; separator = " or "; };
                                        queryFormatting = { formatString = 
"from.address = '${from.address}'"; separator = " or "; escapeSingleQuotes = 1; 
};
                                };
                        };
                        relatedSearches =
                        (
                                {
                                        titleImage = "NSUser";
                                        titleSymbol = "person.fill";
                                        titleFormatting = { formatString = 
"From “${from.address}”"; separator = " or "; };
                                        queryFormatting = { formatString = 
"from.address = '${from.address}'"; separator = " or "; escapeSingleQuotes = 1; 
};
                                },
                                {
                                        titleImage = "NSUser";
                                        titleSymbol = "person.fill";
                                        titleFormatting = { formatString = 
"From “${from.name}”"; separator = " or "; };
                                        queryFormatting = { formatString = 
"from.name = '${from.name}'"; separator = " or "; escapeSingleQuotes = 1; };
                                },
                                {
                                        titleImage = "NSUser";
                                        titleSymbol = "person.fill";
                                        titleFormatting = { formatString = 
"From or To “${from.address}”"; separator = " or "; };
                                        queryFormatting = { formatString = 
"#any-address.address = '${from.address}'"; separator = " or "; 
escapeSingleQuotes = 1; };
                                },
                                {
                                        titleImage = "NSUser";
                                        titleSymbol = "person.fill";
                                        titleFormatting = { formatString = 
"From or To “${from.name}”"; separator = " or "; };
                                        queryFormatting = { formatString = 
"#any-address.name = '${from.name}'"; separator = " or "; escapeSingleQuotes = 
1; };
                                },
                        );
                };
        };
}
_______________________________________________
mailmate mailing list
Unsubscribe: https://lists.freron.com/listinfo/mailmate

Reply via email to