<div ><div>
<p dir="auto">On 31 Aug 2015, at 10:41, Philip Paeps wrote:</p>

<blockquote style="border-left-color: #136BCE; border-left-style: solid; border-left-width: 2px; color: #136BCE; margin: 0 0 5px; padding-left: 5px">
<p dir="auto">Two questions about the headers view (the From/Subject/Date/To block above the<br>
message content that can be collapsed to a one line summary):</p>

<p dir="auto">o Is there a way to add the time zone to the Date field?  Or more generally<br>
change the formatting of the date?  I assume it's a strftime string in a<br>
plist file somewhere but I haven't been able to find it.</p>
</blockquote>

<p dir="auto">It's actually hard coded and the only format is one that converts the dates to the local time zone.</p>

<p dir="auto">If you want to go low level then you can customize the <code>headersFormatting.plist</code> as described <a href="http://manual.mailmate-app.com/customization">here</a>. Don't forget to copy the file to <code>~/Library/Application Support/MailMate/Resources/Layouts/headersFormatting.plist</code>.</p>

<p dir="auto">You would then want to replace the following line:</p>

<pre style="background: #E4E4E4; border: thin solid gray; margin-left: 15px; margin-right: 15px; overflow: auto; padding: 5px"><code>formatString = "${#date.formatted}";
</code></pre>

<p dir="auto">with this</p>

<pre style="background: #E4E4E4; border: thin solid gray; margin-left: 15px; margin-right: 15px; overflow: auto; padding: 5px"><code>formatString = "${#date}";
</code></pre>

<p dir="auto">But you'll get a raw date formatted like this: <code>2015-08-31 10:41:44 +0200</code></p>

<p dir="auto">Obviously, it would be nice if I rethought how dates work in general. It's currently a bit messy and not very flexible.</p>

<blockquote style="border-left-color: #136BCE; border-left-style: solid; border-left-width: 2px; color: #136BCE; margin: 0 0 5px; padding-left: 5px">
<p dir="auto">o Can I add headers to this view somehow?</p>
</blockquote>

<p dir="auto">Yes, by customizing the same file, but its format is not documented. You can probably get far using a bit of copy/paste, but you are also welcome to ask questions. Of course, this is very low level and I make no guarantees that I won't change how it works some day.</p>

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

</div></div>