Matthew.van.Eerde at hbinc.com wrote:
> $Features{"File::Scan"} = 1; # turns it on
> $Features{"File::Scan"} = 0; # turns it off?
> I worry about the = 0 thing. You might be better off doing
> delete $Features{"File::Scan"};
The = 0 is safe.
The test is:
if ($Features{'Virus:FileScan'}) {
# blah blah blah
}
--
David.