Changed source account, use header-source rather than (= (get-source) ...)

2002-09-19  Not Zed  <NotZed@Ximian.com>

	* filtertypes.xml: Changed source account, use header-source
	rather than (= (get-source) ...)

svn path=/trunk/; revision=18113
This commit is contained in:
Not Zed
2002-09-19 13:28:00 +00:00
committed by Michael Zucci
parent 509ffe7ce3
commit c1e57e32d9
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-09-19 Not Zed <NotZed@Ximian.com>
* filtertypes.xml: Changed source account, use header-source
rather than (= (get-source) ...)
2002-09-13 Jeffrey Stedfast <fejj@ximian.com>
* filtertypes.xml: Add a Run Once action to run a command only

View File

@ -568,13 +568,13 @@
<option value="is">
<title>is</title>
<code>
(match-all (= (get-source) ${source}))
(match-all (header-source ${source}))
</code>
</option>
<option value="is-not">
<title>is not</title>
<code>
(match-all (not (= (get-source) ${source})))
(match-all (not (header-source ${source})))
</code>
</option>
</input>