source: npl/mailserver/clamav_conf/freshclam.conf

Last change on this file was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

initial commit, transferred from cleaned syn3 svn tree

  • Property mode set to 100755
File size: 4.1 KB
Line 
1##
2## Syn-3 freshclam config file
3## Please read the freshclam.conf(5) manual before editing this file.
4##
5
6
7# Path to the database directory.
8# WARNING: It must match clamd.conf's directive!
9# Default: hardcoded (depends on installation options)
10#DatabaseDirectory /var/lib/clamav
11
12# Path to the log file (make sure it has proper permissions)
13# Default: disabled
14#UpdateLogFile /var/log/freshclam.log
15
16# Maximum size of the log file.
17# Value of 0 disables the limit.
18# You may use 'M' or 'm' for megabytes (1M = 1m = 1048576 bytes)
19# and 'K' or 'k' for kilobytes (1K = 1k = 1024 bytes).
20# in bytes just don't use modifiers.
21# Default: 1M
22#LogFileMaxSize 2M
23
24# Log time with each message.
25# Default: no
26#LogTime yes
27
28# Enable verbose logging.
29# Default: no
30#LogVerbose yes
31
32# Use system logger (can work together with UpdateLogFile).
33# Default: no
34#LogSyslog yes
35
36# Specify the type of syslog messages - please refer to 'man syslog'
37# for facility names.
38# Default: LOG_LOCAL6
39#LogFacility LOG_MAIL
40
41# This option allows you to save the process identifier of the daemon
42# Default: disabled
43#PidFile /var/run/freshclam.pid
44
45# By default when started freshclam drops privileges and switches to the
46# "clamav" user. This directive allows you to change the database owner.
47# Default: clamav (may depend on installation options)
48DatabaseOwner amavis
49
50# Initialize supplementary group access (freshclam must be started by root).
51# Default: no
52#AllowSupplementaryGroups yes
53
54# Use DNS to verify virus database version. Freshclam uses DNS TXT records
55# to verify database and software versions. With this directive you can change
56# the database verification domain.
57# WARNING: Do not touch it unless you're configuring freshclam to use your
58# own database verification domain.
59# Default: current.cvd.clamav.net
60#DNSDatabaseInfo current.cvd.clamav.net
61
62# Uncomment the following line and replace XY with your country
63# code. See http://www.iana.org/cctld/cctld-whois.htm for the full list.
64#DatabaseMirror db.XY.clamav.net
65
66# database.clamav.net is a round-robin record which points to our most
67# reliable mirrors. It's used as a fall back in case db.XY.clamav.net is
68# not working. DO NOT TOUCH the following line unless you know what you
69# are doing.
70DatabaseMirror database.clamav.net
71
72# How many attempts to make before giving up.
73# Default: 3 (per mirror)
74#MaxAttempts 5
75
76# With this option you can control scripted updates. It's highly recommended
77# to keep it enabled.
78# Default: yes
79#ScriptedUpdates yes
80
81# By default freshclam will keep the local databases (.cld) uncompressed to
82# make their handling faster. With this option you can enable the compression;
83# the change will take effect with the next database update.
84# Default: no
85#CompressLocalDatabase no
86
87# Number of database checks per day.
88# Default: 12 (every two hours)
89#Checks 24
90
91# Proxy settings
92# Default: disabled
93#HTTPProxyServer myproxy.com
94#HTTPProxyPort 1234
95#HTTPProxyUsername myusername
96#HTTPProxyPassword mypass
97
98# If your servers are behind a firewall/proxy which applies User-Agent
99# filtering you can use this option to force the use of a different
100# User-Agent header.
101# Default: clamav/version_number
102#HTTPUserAgent SomeUserAgentIdString
103
104# Use aaa.bbb.ccc.ddd as client address for downloading databases. Useful for
105# multi-homed systems.
106# Default: Use OS'es default outgoing IP address.
107#LocalIPAddress aaa.bbb.ccc.ddd
108
109# Send the RELOAD command to clamd.
110# Default: no
111NotifyClamd /etc/clamd.conf
112
113# Run command after successful database update.
114# Default: disabled
115#OnUpdateExecute command
116
117# Run command when database update process fails.
118# Default: disabled
119#OnErrorExecute command
120
121# Run command when freshclam reports outdated version.
122# In the command string %v will be replaced by the new version number.
123# Default: disabled
124#OnOutdatedExecute command
125
126# Don't fork into background.
127# Default: no
128#Foreground yes
129
130# Enable debug messages in libclamav.
131# Default: no
132#Debug yes
133
134# Timeout in seconds when connecting to database server.
135# Default: 30
136#ConnectTimeout 60
137
138# Timeout in seconds when reading from database server.
139# Default: 30
140#ReceiveTimeout 60
Note: See TracBrowser for help on using the repository browser.