On Sat, 2004-10-02 at 16:35, J.D. Bronson wrote: > if ($RelayAddr =~ "^192\.168\.1" or "^127\.0\.0\.1") {
Try this instead: if ($RelayAddr =~ "^192\.168\.1" or $RelayAddr eq "127.0.0.1") {
The error is that "or" binds two conditional statements. In your example, it was seeing this as:
statement 1: $RelayAddr =~ "^192\.168\.1" OR statement 2: "^127\.0\.0\.1"
Richard
Richard -
this still didnt work. We did some tests and as expected $RelayAddr does have 127.0.0.1 in it, but the boilerplate is still NOT being added.
I called a Perl Guru and we tried several options. Nothing worked. As long as I dont specify an IP or IP range to check by, the boilerplate works...
I have removed the idea and simply gave up. Thanks for trying to help though..
-- J.D. Bronson Aurora Health Care // Information Services // Milwaukee, WI USA Office: 414.978.8282 // Email: [EMAIL PROTECTED] // Pager: 414.314.8282
** DISCLAIMER **
Per Anti-Virus Policy, this email has been scanned for viruses.
Scanned clean by F-PROT ANTIVIRUS 4.4.6 - http://www.f-prot.com
_______________________________________________ Visit http://www.mimedefang.org and http://www.canit.ca MIMEDefang mailing list [EMAIL PROTECTED] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

