]> TLD Linux GIT Repositories - packages/proftpd.git/blob - proftpd-mod_clamav.conf
- updated to 1.3.7f
[packages/proftpd.git] / proftpd-mod_clamav.conf
1 # Single system with both ProFTPd and Clamd utilizing Unix local sockets.
2 #<IfModule mod_clamav.c>
3 #       ClamAV on
4 #       ClamLocalSocket /tmp/clamd
5 #</IfModule>
6
7 # Single system with both ProFTPd and Clamd utilizing TCP sockets.
8 # Additionally, only files who's size is less than 250MB will be scanned
9 # and all files for which scanning has failed will be rejected.
10 #<IfModule mod_clamav.c>
11 #       ClamAV on
12 #       ClamServer 127.0.0.1
13 #       ClamPort 3310
14 #       ClamMaxSize 250 Mb
15 #       ClamFailsafe on
16 #</IfModule>
17
18 # System with ProFTPd on one host and clamd on other host.
19 #<IfModule mod_clamav.c>
20 #       ClamAV on
21 #       ClamServer 192.168.10.10
22 #       ClamPort 3310
23 #       ClamStream on
24 #</IfModule>