> The price seems very reasonable.
> 

Just purchased an Enterprise license today for a client. $450 per server.  Very 
reasonable.  I was talking to their sales team about licensing in the future, and they 
said they are looking at going per seat for email scanning by 2003.  I asked him what 
licensing terms would be if it was not used for email (ie file server), and he said 
they would work on a case-by-case basis.

> If anyone using it, please let me know if it works well for you.
> Also, what method are you using to update the signature files ?
> 

I edited the update_fprot script from QS, and run it through cron every hour.  I use 
ncftpget because it will not download the file unless it has been modified.  That way 
you dont piss anyone of for downloading too often, but you also stay very current on 
your defs.  Here is my simple script... taken from qmail-scanner-1.12/contrib/ 
directory, but modifying the wget and url.

----------------------------
#!/bin/bash
# update_fprot.sh
#
cd /usr/local/f-prot
ncftpget ftp://updates.f-prot.com/pub/macrdef2.zip
ncftpget ftp://updates.f-prot.com/pub/fp-def.zip
unzip -o fp-def.zip
unzip -o macrdef2.zip
----------------------------

Add crontab to check every hour
0 * * * * /usr/local/f-prot/update_fprot.sh 2>&1 >/dev/null
or less often.. 6hrs
0 */4 * * * /usr/local/f-prot/update_fprot.sh 2>&1 >/dev/null


----
Dallas

_______________________________________________________________

Hundreds of nodes, one monster rendering program.
Now that’s a super model! Visit http://clustering.foundries.sf.net/
_______________________________________________
Qmail-scanner-general mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/qmail-scanner-general

Reply via email to