<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto" style="margin:1em 0">On 10 Jan 2017, at 9:34, Jan Erik Moström wrote:</p>

<p dir="auto" style="margin:1em 0"></p></div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto" style="margin:1em 0">If I want to automate certain aspects of my mail handling what is the best way to go about this. Classes of things I would like to do are<br>
<br>
+ Create a new emails<br>
+ Call on a script with references to one or more selected emails<br>
(+ Trigger a script based an a filter)<br>
<br>
I looked at the applescript dictionary and it seem to be pretty basic (too basic to be useful??). I also looked at some of the bundles and it looks like any kind of language would work here.</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto" style="margin:1em 0">Bundles are the way to go. Rules in mailboxes can also trigger bundle commands.</p>

<p dir="auto" style="margin:1em 0"></p></div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto" style="margin:1em 0">So, is there some language that is a "better choice" for some reason when interacting with Mailmate? Personally, it doesn't matter much but I would prefer not to use Cobol, Fortran or APL :D</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto" style="margin:1em 0">No, you can use any language you like. Typical choices would be Ruby or Python. There is very little documentation though. Starting points are the existing bundles and this important hint: Each <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">uuid</code> (which exist in most of the files) <strong>must</strong> be unique. You can put such a unique value on the pasteboard using this command:</p>

<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">uuidgen | tr -d "\n" | pbcopy
</code></pre>

<p dir="auto" style="margin:1em 0">Custom bundles should be placed here:</p>

<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">~/Library/Application Support/MailMate/Bundles/
</code></pre>

<p dir="auto" style="margin:1em 0">-- <br>
Benny</p>
</div>
</div>
</body>
</html>