2 /********************************************************************************
3 * install.d/config.inc.php : configuration of philter
4 * ------------------------
6 * This file is part of the philter distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
10 $philter = new Philter();
12 /********** LOCALE **********/
14 require("locales/philter.en.inc.php");
16 /********** DATABASE **********/
18 $philter->config
['db']['host'] = "localhost";
19 $philter->config
['db']['name'] = "philter";
20 $philter->config
['db']['user'] = "philter";
21 $philter->config
['db']['pass'] = "philter";
25 /********** PATHS **********/
27 $philter->config
['path']['bogofilter'] = "/usr/bin/bogofilter -d /var/mail/.bogofilter";
28 $philter->config
['path']['spool'] = "/var/spool/philter";
30 /********** PLUGINS **********/
32 $philter->register_global_plugin(new BogoPlugin(true
));
34 $philter->register_plugin(new HdrPlugin(false
));
35 $philter->register_plugin(new CustHdrPlugin(false
));
37 $philter->register_plugin(new FwdPlugin());
38 $philter->register_plugin(new AutoReplyPlugin());
40 /********************************************************************************
42 * vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
43 ********************************************************************************/