<div class="markdown">
<p dir="auto">On 26 Apr 2013, at 21:53, Michal Hruska wrote:</p>

<blockquote>
<p dir="auto">1) I use widescreen layout with hidden toolbar. If I also hide mailboxes (View - Layout - Hide mailboxes) and quit the program, when I start it again the list of mailboxes takes the whole program window, there is neither list of messages nor message preview. Is it a bug or am I missing something?</p>
</blockquote>

<p dir="auto">It's a bug which I haven't fixed yet. Sorry about the inconvenience.</p>

<blockquote>
<p dir="auto">2) Is it possible to define keyboard shortcut (via key bindings) that will send composed message but don't save it to "sent items" folder? (I mean<br>
don't save it at all)</p>
</blockquote>

<p dir="auto">No, I don't think that is possible. The best I can think of is to automatically move the message to “Deleted Messages”:</p>

<p dir="auto">Create a shortcut like this:</p>

<pre><code>"@X" = ( "setTag:", "AutoDelete", "send:" );
</code></pre>

<p dir="auto">And then (experimental low level feature) create a script in this location:</p>

<pre><code>~/Library/Application Support/MailMate/Scripts/AutoDelete.mmCommand
</code></pre>

<p dir="auto">With this content:</p>

<pre><code>{
    name    = 'Auto Delete';
    events  = ( 'selection.added' );
    select  = "$Sent.filter(#flags.flag = 'AutoDelete')";
    actions = ( { type = moveMessage; mailbox = trash; } );
}
</code></pre>

<p dir="auto">If I added some kind of <code>expungeMessage</code> action then it might not be good enough for you if security is the issue. The textual content of the sent message could live in database index (cache) files for a while.</p>

<hr>

<p dir="auto">Benny</p>

</div>