<div class="markdown">
<p>On 4 Jun 2012, at 19:45, Joachim Tingvold wrote:</p>

<blockquote>
<p>3) Is there a way to customize the &#39;Date Received&#39; field in the email-list? I don&#39;t want the timezone,</p>
</blockquote>

<p>Timezone? You mean the time of day?</p>

<blockquote>
<p>and I also might want to remove the relative &#39;Today&#39; and &#39;Yesterday&#39; (replacing them with dates). I guess MailMate gets all of these from the OS somehow, so I&#39;m not sure if this is even possible?</p>
</blockquote>

<p>No, it is actually all custom code. It was a rather big task to make the Date column since it must also dynamically change when being resized.</p>

<p>The good news is that it does make it possible for me to make it customizable, but I cannot claim that it is a high priority.</p>

<p>For the record, I currently have 5 different formats depending on the width of the column. These are:</p>

<pre><code>{ NSDateFormatterLongStyle,   NSDateFormatterShortStyle },
{ NSDateFormatterMediumStyle, NSDateFormatterShortStyle },
{ NSDateFormatterShortStyle,  NSDateFormatterShortStyle },
{ NSDateFormatterMediumStyle,  NSDateFormatterNoStyle },
{ NSDateFormatterShortStyle,  NSDateFormatterNoStyle },
</code></pre>

<p>The first row is the format used for the date (left aligned), and the second row is the format used for the time of day (right aligned). The “Yesterday&#47;Today” stuff is handled separately. If I understand you correctly you want to disable “Yesterday&#47;Today” and always disable the time of day?</p>

<p>Note that is also a relative “Date Received” column available.</p>

<blockquote>
<p>4) Is there a way for MailMate to automatically remove the signature when replying to emails? (That is, everything after, and including, &#39;--\n&#39;).</p>
</blockquote>

<p>Yes, but it is a hidden&#47;experimental feature. It is possible to make MailMate run a script on the body of a message before replying to it (also before displaying it). This is part of what I hope is going to be a very central part of MailMate in the future (customization via scripts either explicitly executed or triggered by events such as replying).</p>

<p>I might have time later tonight or tomorrow to provide a script which would do what you want (and which would work with the current version of MailMate).</p>

<hr>

<p>Benny</p>

</div>