<div class="markdown">
<p dir="auto">On 14 Nov 2013, at 1:44, Will Styler wrote:</p>

<blockquote>
<p dir="auto">Thanks for the quick response.  Unfortunately, I can't seem to get that to work.  I've tried:</p>

<pre><code>    "m" = ( "goToMailbox:", "imaps://mail.server.com/INBOX/Temp" );
    "m" = ( "goToMailbox:", "imaps://mail.server.com:993/INBOX/Temp" );
    "m" = ( "goToMailbox:", "imaps://mail.server.com/Temp" );
</code></pre>

<p dir="auto">And none appear to resolve.  Any further advice?  Am I missing something silly?</p>
</blockquote>

<p dir="auto">No, it's tricky. It's documented <a href="http://manual.mailmate-app.com/custom_key_bindings#special_actions">here</a> but not very well. The best you can do is to simply see how the IMAP account name is encoded here:</p>

<pre><code>~/Library/Application Support/MailMate/Messages/IMAP/
</code></pre>

<p dir="auto">And it's always <code>imap:</code>, for example: </p>

<pre><code>imap://username@mail.server.com/INBOX/Temp
</code></pre>

<p dir="auto">or if the username itself contains a <code>@</code> then it'll be something like:</p>

<pre><code>imap://user%40server.com@mail.server.com/INBOX/Temp
</code></pre>

<p dir="auto">Creating custom key bindings is a low level feature and this would of course be much easier if it had some kind of GUI (no plans to do so though). In this particular case, configuring a shortcut to go to a particular mailbox is on the todo as part of some planned changes for the mailbox editor.</p>

<p dir="auto">-- <br>
Benny<br>
<a href="http://freron.com/crowdfund2014">http://freron.com/crowdfund2014</a></p>

</div>