<div class="markdown">
<p>On 9 May 2012, at 0:22, Bill Cole wrote:</p>

<blockquote>
<p>On 8 May 2012, at 16:44, Niels Kobschätzki wrote:</p>

<blockquote>
<blockquote>
<blockquote>
<p>Is there a way to show there to which imap-source a mail belongs?</p>
</blockquote>

<p>The &quot;Source Mailbox&quot; is available as a column in a mailbox message list: right click in the header strip of a mailbox pane to get the column selection menu.</p>
</blockquote>

<p>I&#39;d like to see it in the preview-area though because there is not enough space for that when you have two mail-adresses like: firstname@longlastname.de and firstname@longlastname.net ;)</p>
</blockquote>

<p>Add this dictionary to the &quot;children&quot; array of the &quot;logFormatting&quot; dictionary  in the headersFormatting.plist file:</p>

<pre><code>    {
         formatString = &quot;${#source}&quot;;
         prefix =                 {
             color = &quot;#777777&quot;;
             fontStyle = bold;
             string = &quot;\tSource:\t&quot;;
         };
     }
</code></pre>
</blockquote>

<p>You may also want to combine it with a hack which is used for displaying the source in the messages outline with the name of the source and without the INBOX prefix for certain types of IMAP servers. Something like this should work I believe:</p>

<pre><code>    {
        prefix = {
            color = &quot;#777777&quot;;
            fontStyle = bold;
            string = &quot;\tSource:\t&quot;;
        };
        formatString = &quot;${#source.path.noinbox} – &quot;;
    },
    {
        &#47;&#47; Hack (only works if used as a single key in a format-string).
        formatString = &quot;${#source-name}&quot;;
    },
</code></pre>

<hr>

<p>Benny</p>

</div>