Fedora porting

Thank you for a nice plugin!

In order to make it work on Fedora 16/17, that has a clamd config file at “/etc/clamd.d/scan.conf”, I had to add a new variable called “$clamd_config” and change line 167:

+ my $clamd_conf = “/etc/clamd.d/scan.conf”;

– chomp(my $clamd_ver = `$clamd_cmd -V`);
+chomp(my $clamd_ver = `$clamd_cmd -V -c $clamd_conf`);

Works great!