On Wed 2-Jul-03 11:17am -0400, David Elliott wrote:

> As you will be able to see the sender and the recipient both should be
> [EMAIL PROTECTED] but email that are being caught have

> Reply-To: David Elliott <[EMAIL PROTECTED]>
> CC: [EMAIL PROTECTED], [EMAIL PROTECTED], GovSupport
> <[EMAIL PROTECTED]>

> So there email are from [EMAIL PROTECTED] and one of the recipients
> is [EMAIL PROTECTED] and should not be picked up but I think that it is
> also looking at the [Reply-To:] where it is picking up
> [EMAIL PROTECTED]

For Sender, TB checks the From, Sender, Reply-To and Return-path.
Possibly other fields to - it's not documented.  For Recipient, it
checks at least To and CC.

Your filter looks for [EMAIL PROTECTED] in both The Bat!'s Sender
and Recipient locations.  So of course that email passes.

Do you want to restrict that to just the From: and To: fields?

If so, check Regex and look for the presence of the following in the
kludges:

    (?i-s)^to:[EMAIL PROTECTED]
    (?i-s)^from:[EMAIL PROTECTED]

The (?i-s) makes the search caseless (not strickly required) and makes
`.` not match a `\n`.  The `.` is escaped in `.com` to not match any
character there.  The `^` only finds `to...` and `from...` at the
start of a line.

BTW, I assume it's your error copying the CC block - it's not properly
folded.  When there's more than one line used, the subsequent lines
must start with white space.

-- 
Best regards,
Bill


________________________________________________________

http://www.silverstones.com/thebat/TBUDLInfo.html

Reply via email to