<div class="markdown">
<p>On 29 Mar 2012, at 16:11, Neil Lee wrote:</p>

<blockquote>
<p>I&#39;m trying to figure out how to set up a smart mailbox in MailMate that shows email received in the past 7 days. I also want to see my replies to these emails as well -- basically, the full thread from the past 7 days.</p>

<p>Is this possible? I can&#39;t figure out how to set this up.</p>
</blockquote>

<p>Yes, it&#39;s possible. The trick is that you need to use two smart mailboxes to do it. The first one you probably already have:</p>

<pre><code>All Messages:
    Date is within last 7 days
</code></pre>

<p>If we use the name “7 days” for the smart mailbox above then we can create another one as follows:</p>

<pre><code>All Messages:
    Thread-Id is in “7 days” Thread-Id
</code></pre>

<p>This smart mailbox picks every message in “All Messages” for which the Thread-Id (a value created by MailMate for all messages) is the same as a Thread-Id in the “7 days” mailbox.</p>

<p>If you only want your replies and not the full threads then you could probably do (untested):</p>

<pre><code>All Messages:
    In-Reply-To is in “7 days” Message-Id
</code></pre>

<p>Well, you would have to either merge mailboxes to get the original messages as well or maybe add:</p>

<pre><code>    Message-Id is in “7 days” Message-Id
</code></pre>

<p>(Merging mailboxes would be more efficient and nicer in my opinion. Keep the intermediate mailboxes as children of the primary smart mailbox.)</p>

<hr>

<p>Benny</p>

</div>