Add inoclam banner to e-mail notifications.
[inoclam.git] / inoclam.conf
blobe8ab8ad83fe865daad04ba61df3cb3d26b397039
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>
21 ##########################################################################
23 ##  BASE SETTINGS
25 ##########################################################################
27 # Set this to the directory that inoclam should watch. inoclam will
28 # recursively watch all of the subdirectories as well.
29 watch_dir = /path/to/directory
31 ##########################################################################
33 ##  VIRUS DETECTION SETTINGS
35 ##########################################################################
37 # Allow or disable permission to automatically delete infected files by
38 # setting this to true or false
39 virus_removal_enabled = true
41 ##########################################################################
43 ##  E-MAIL NOTIFICATION SETTINGS
45 ##########################################################################
47 # Enable or disable e-mail notifications by setting this to true or false
48 smtp_enabled = true
50 # The hostname of the SMTP server you wish to use for e-mail notifications
51 smtp_host = "localhost"
53 # The TCP port to connect to for e-mail notifications
54 smtp_port = 25
56 # The address to send e-mail notifications to
57 smtp_to = "root@localhost"
59 # The return address for e-mail notifications
60 smtp_from = "root@localhost"
62 # The subject line used for e-mail notifications
63 smtp_subject = "[inoclam] Virus Detected"