<div class="markdown">
<p dir="auto">On 12 Dec 2013, at 20:45, Anders Thoresson wrote:</p>

<blockquote>
<p dir="auto">I got three addresses one three separate domains. I want a smart folder that includes all mail sent from these domains when I'm the sender.</p>
</blockquote>

<p dir="auto">Should that have been “not the sender”? (Based on the following and the subject line.)</p>

<blockquote>
<p dir="auto">Pseudo code is something like</p>

<p dir="auto">(sender domain is domain1.net OR domain2.net OR domain3.net) AND (sender is not <a href="mailto:anders@domain1.net">anders@domain1.net</a> OR <a href="mailto:anders@domain2.net">anders@domain2.net</a> or <a href="mailto:anders@domain3.net">anders@domain3.net</a>)</p>

<p dir="auto">But no matter how I try to set this up I can't get it to work.</p>

<p dir="auto">Any suggestions?</p>
</blockquote>

<p dir="auto">Something like this perhaps:</p>

<pre><code>All of the following:
    Any of the following:
        From ▸ Address ▸ Domain = domain1.net
        From ▸ Address ▸ Domain = domain2.net
        From ▸ Address ▸ Domain = domain3.net
    From ▸ Address != anders@domain1.net
    From ▸ Address != anders@domain2.net
    From ▸ Address != anders@domain3.net
</code></pre>

<p dir="auto">Note that the second part is part of the “All”-construction. You use “OR” in your description, but it should have been “AND” I believe.</p>

<p dir="auto">Otherwise, I suggest you split up your problem in smaller problems and make that work first.</p>

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

</div>