Hendrik Oesterlin wrote: HO> "George Mitchell" wrote on 12/02/2008 at 10:25:19 +1100
>> If you're sure there's a valid signature delimiter in the message >> you're looking for, you can use a regular expression as a workaround. >> Using 'match' instead of 'contains', search for something like: >> mygate[\S\s]*--\s HO> There is also the other more secure sig delimiter: "- --" HO> DashSpaceDashDash Good point. Might be better to drop the last \s: mygate[\S\s]*-- This'll catch either signature delimiter and probably won't result in many more false positives. I think that's better anyway since this should be as easy to remember and type as possible. Also, I guess the asterisk probably ought to be a plus, but likely makes no practical difference: mygate[\S\s]+-- -- George Using The Bat! 4.0.14 on Windows XP Pro, Service Pack 2. ________________________________________________________ Current beta is 4.0.14.0 | 'Using TBBETA' information: http://www.silverstones.com/thebat/TBUDLInfo.html

