Jeff Grossman wrote:
> if ($recip2 eq '[EMAIL PROTECTED]' or
>         $recip2 eq '[EMAIL PROTECTED]' and
>         $sender2 ne '[EMAIL PROTECTED]') {
> ) {

Parentheses are a good idea here...
if (
        (
                $recip2 eq '[EMAIL PROTECTED]' or
                $recip2 eq '[EMAIL PROTECTED]'
        ) and
        $sender2 ne '[EMAIL PROTECTED]'
) {

but the logic looks like it shold have worked anyway.

Try changing this line to

                action_notify_administrator("TESTING: Recipient: 
$recip2\nSender:
$sender
\nIP: $ip");

and see if the TESTING: thing comes through.  Are you reloading MIMEDefang 
after changing the script?

-- 
Matthew.van.Eerde (at) hbinc.com               805.964.4554 x902
Hispanic Business Inc./HireDiversity.com       Software Engineer

_______________________________________________
Visit http://www.mimedefang.org and http://www.roaringpenguin.com
MIMEDefang mailing list
[email protected]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to