<div class="markdown">
<p>On 1 Feb 2013, at 19:56, Eric A. Meyer wrote:</p>

<blockquote>
<p>Are there any more actions besides the ones on <a href="http://manual.mailmate-app.com/key_binding_selectors">http:&#47;&#47;manual.mailmate-app.com&#47;key_binding_selectors</a> and &quot;send:&quot; (which hasn&#39;t been added yet)?</p>
</blockquote>

<p>Yes, many more. The actions are how the GUI (Cocoa) works internally. The question is which of these I choose to expose, i.e., which ones I do not expect to change (or rename) in the future. Almost every menu item has a corresponding action. I&#39;ve added <code>send:</code>, but the homepage manual is not updated yet.</p>

<blockquote>
<p>I was wondering about keybinding things like triggering mail synchronization,</p>
</blockquote>

<pre><code>synchronize:
</code></pre>

<p>That one is a good example of one that I&#39;m not too happy about. It&#39;s not as well-defined what it does as I would like. Also, it should be unnecessary in most cases. Messages arriving in the INBOX are detected using IMAP IDLE. The server (or MailMate) is buggy if checking manually is faster.</p>

<blockquote>
<p>flipping between plain-text and HTML views,</p>
</blockquote>

<p>These I could add to the list:</p>

<pre><code>nextAlternative:
previousAlternative:
</code></pre>

<blockquote>
<p>marking a parent message as read once a reply is sent (without archiving or moving it),</p>
</blockquote>

<p>Does not exist.</p>

<blockquote>
<p>and viewing the raw headers for a message.</p>
</blockquote>

<p>This one I could also add to the list:</p>

<pre><code>toggleRawSource:
</code></pre>

<p>It shows the entire raw message.</p>

<p>Maybe I should just grep all actions in the code and review them one-by-one for inclusion in the list. If I have time for it I&#39;ll do it in the weekend (soon going on vacation).</p>

<blockquote>
<p>Which reminds me, is there a way short of digging up the .eml file to view the raw headers for a message?</p>
</blockquote>

<p>The <code>toggleRawSource:</code> menu item (Show Raw Message) has the same shortcut as Apple Mail: ⌥⌘U.</p>

<hr>

<p>Benny</p>

</div>