[MlMt] Display only From *email address* in message list

Benny Kjær Nielsen mailinglist at freron.com
Wed May 28 10:42:22 EDT 2025


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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freron.com/pipermail/mailmate/attachments/20250528/bac9363e/attachment.htm>
-------------- next part --------------
{
	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; };
				},
			);
		};
	};
}


More information about the mailmate mailing list