Remove obsolete info from inoclam.conf man page. Add placeholder.
[inoclam.git] / inoclam.conf
blob8b3400afb4b7fb8c3f64db74b1bc3bbef3ec768d
1 # inoclam - Inotify+ClamAV virus scanner
2 # Copyright (C) 2007 Vermont Department of Taxes
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 # Contributor(s):
19 #   Tom Cort <tom.cort@state.vt.us>
20 #   Matt Gagne <matt.gagne@state.vt.us>
22 # The 'watch' section associates a directory with a set of
23 # other settings. The configuration file can contain multiple
24 # watch sections.
25 watch {
27         # Set this to the directory that inoclam should watch. inoclam 
28         # will recursively watch all of the subdirectories as well.
29         # Default: /tmp
30         directory = "/tmp"
32         # The 'file' section controls file creation/modification settings.
33         file {
34                 # Enable or disable e-mail notifications when a file is 
35                 # created or changed by setting this to true or false.
36                 # Default: false
37                 email_alert = false
39                 # The subject line used for file change e-mail notifications.
40                 # Default: "[inoclam] File Create/Change"
41                 email_subject = "[inoclam] File Create/Change"
42         }
44         # The 'virus' section controls virus scanning settings.
45         virus {
46                 # Allow or deny permission to automatically delete 
47                 # infected files by setting this to true or false.
48                 # Default: true
49                 auto_remove = true
51                 # Enable or disable e-mail notifications when a virus is 
52                 # detected by setting this to true or false.
53                 # Default: true
54                 email_alert = true
56                 # The subject line used for virus found e-mail notifications.
57                 email_subject = "[inoclam] Virus Detected"
58         }
60         # The 'smtp' section holds e-mail settings.
61         smtp {
63                 # The hostname of the SMTP server you wish to use for 
64                 # e-mail notifications.
65                 # Default: "localhost"
66                 host = "localhost"
68                 # The TCP port to connect to for e-mail notifications.
69                 # Default: 25
70                 port = 25
72                 # The return address for e-mail notifications.
73                 # Default: "root@localhost"
74                 from = "root@localhost"
76                 # A comma separated list of addresses to send e-mail 
77                 # notifications to.
78                 # Example: to = {"root@localhost","user@localhost"}
79                 # Default: {"root@localhost"}
80                 to = {
81                         "root@localhost"
82                 }
83         }