<!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">I couldn't find with Google a way to configure org-mode to open MailMate's message links.  Here's what I came up with; hoping it's useful to someone:</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">(when (eq system-type 'darwin)          ; I only run MailMate on Mac
  (org-link-set-parameters "message"
                         :follow
                         '(lambda (path) (shell-command (format "open -a MailMate 'message://%s'" path)))))
</code></pre>
</div>
</div>
</body>
</html>