[MlMt] Default bcc for a specific sender mail address
Sebastian Hagedorn
Hagedorn at uni-koeln.de
Thu Jun 18 08:36:41 EDT 2026
You could use KeyboardMaestro and emate. Here’s what I have done:
I have templates for that which I access via the Commands menu. Here’s an example:
• mkdir ~/Library/Application Support/MailMate/Bundles/Templates.mmBundle
• mkdir ~/Library/Application Support/MailMate/Bundles/Templates.mmBundle/Commands
• mkdir -p ~/Library/Application Support/MailMate/Bundles/Templates.mmBundle/Support/bin
Create an Info.plist file in Templates.mmBundle like this:
{ "contactEmailRot13" = "xxx";
contactName = "YOUR NAME";
description = "...";
name = "Templates";
uuid = "9341B0CD-B0CE-4C88-A4B5-F46DD9AAAAAA";
}
Create an .mmcommand file in Commands, e.g.
{ name = "Listmaster";
uuid = "3A610C0F-C6EE-4C2E-BA93-516CF91251B9";
input = "none"; // Options are: none, raw, decoded, canonical, html, selection, formatted
output = "actions"; // Options are: discard, actions
executionMode = "noMessages"; // Options are: noMessages, singleMessage, multipleMessages
command = '#!/bin/bash\n"${MM_BUNDLE_SUPPORT}/bin/listmaster"\n';
}
Create the script that’s executed as command in Support/bin:
#!/bin/bash
ACTION=`defaults read com.freron.MailMate MmMailManCommandAction 2>/dev/null`
if [ -z "${ACTION}" ]; then
ACTION="openMessage"
fi
cat << END
{ actions = (
{
type = createMessage;
headers = {
"from" = "Sebastian Hagedorn <Hagedorn at uni-koeln.de>";
"cc" = "Listmaster Uni Köln <listmaster at uni-koeln.de>";
"reply-to" = "Listmaster Uni Köln <listmaster at uni-koeln.de>";
"#signature" = "Sebastian Hagedorn (Listmaster)";
};
resultActions = (
{
type = "${ACTION}";
}
);
body = "Sehr geehrte";
}
);
}
END
Cheers,
Sebastian
--
.:.Sebastian Hagedorn - Weyertal 121 (Gebäude 133), Zimmer 2.13.:.
.:.IT Center University of Cologne (ITCC).:.
.:.Universität zu Köln / Cologne University - ✆ +49-221-470-89578.:.
.:. SIP: a0620 at unikoeln.calls.webex.com .:.
On 17 Jun 2026, at 20:42, Julian Karhoff via mailmate wrote:
> Hi folks,
>
> is the above possible: adding a default bcc for a mail for a specific sender mail address in the composer view? So if I choose as sender a at example.com, bcc becomes directly b at example.com?
>
> I wasn't able to find such an option. Maybe in a plist?
>
> Any help is appreciated.
>
> Best regards,
>
> Julian
> _______________________________________________
> mailmate mailing list
> Unsubscribe: https://lists.freron.com/listinfo/mailmate
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freron.com/pipermail/mailmate/attachments/20260618/0c499a14/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 3703 bytes
Desc: S/MIME digital signature
URL: <http://lists.freron.com/pipermail/mailmate/attachments/20260618/0c499a14/attachment-0001.bin>
More information about the mailmate
mailing list