vstoykov / django-clamd

Integrates python-clamd with Django for easy scanning files for viruses on upload
17 stars 33 forks source link

Configuration - incorrect documentation #1

Closed dilrajsachdev closed 8 years ago

dilrajsachdev commented 8 years ago

In document, it states the default configuration are CLAMD_SOCKET = '/var/run/clamav/clamd.ctl' CLAMD_USE_TCP = False CLAMD_TCP_SOCKET = 3310 CLAMD_TCP_ADDR = '127.0.0.1'

But it should be CLAMD_SOCKET = '/var/run/clamav/clamd.ctl' CLAMD_USE_TCP = False CLAMD_TCP_PORT = 3310 CLAMD_TCP_SOCKET = '127.0.0.1'

Thanks

vstoykov commented 8 years ago

Thanks. I will fix it.

vstoykov commented 8 years ago

Actually I will change it to respect the documentation because names there are more close to real config vars in clamd.conf file: TCPSocket, TCPAddr

dilrajsachdev commented 8 years ago

Yes that will be better, thanks

vstoykov commented 8 years ago

There is new version on PyPi (0.3.2).