Files
evolution/default_user/searches.xml
Jeffrey Stedfast 19f5c4472d So it turns out that I needed to name the recipient's part name to "to"
2001-08-07  Jeffrey Stedfast  <fejj@ximian.com>

	* searches.xml: So it turns out that I needed to name the
	recipient's part name to "to" instead of "recipient" because they
	need to match whatever is in vfoldertypes.xml. I also changed the
	"type" to "address" which is what the vfoldertypes.xml
	specifies. Unfortunately, it's still not working? At least it's
	probably more correct now...

svn path=/trunk/; revision=11759
2001-08-08 01:55:34 +00:00

86 lines
2.3 KiB
XML

<?xml version="1.0"?>
<filteroptions>
<ruleset>
<rule grouping="any" source="demand">
<title>Sender contains</title>
<partset>
<part name="sender">
<value name="sender-type" type="option" value="contains"/>
<value name="sender" type="string"/>
</part>
</partset>
<sources/>
</rule>
<rule grouping="any" source="demand">
<title>Body or subject contains</title>
<partset>
<part name="subject">
<value name="subject-type" type="option" value="contains"/>
<value name="subject" type="string"/>
</part>
<part name="body">
<value name="body-type" type="option" value="contains"/>
<value name="word" type="string"/>
</part>
</partset>
<sources/>
</rule>
<rule grouping="any" source="demand">
<title>Body contains</title>
<partset>
<part name="body">
<value name="body-type" type="option" value="contains"/>
<value name="word" type="string"/>
</part>
</partset>
<sources/>
</rule>
<rule grouping="any" source="demand">
<title>Subject contains</title>
<partset>
<part name="subject">
<value name="subject-type" type="option" value="contains"/>
<value name="subject" type="string"/>
</part>
</partset>
<sources/>
</rule>
<rule grouping="any" source="demand">
<title>Body does not contain</title>
<partset>
<part name="body">
<value name="body-type" type="option" value="not contains"/>
<value name="word" type="string"/>
</part>
</partset>
<sources/>
</rule>
<rule grouping="any" source="demand">
<title>Subject does not contain</title>
<partset>
<part name="subject">
<value name="subject-type" type="option" value="not contains"/>
<value name="subject" type="string"/>
</part>
</partset>
<sources/>
</rule>
<rule grouping="any" source="demand">
<title>Recipients contain</title>
<partset>
<part name="to">
<value name="recipient-type" type="option" value="contains"/>
<value name="recipient" type="address"/>
</part>
</partset>
<sources/>
</rule>
</ruleset>
</filteroptions>