]>
git.datanom.net - qtadmin.git/blob - config.php
2 /* vim: set ts=4 tw=0 sw=4 noet: */
7 $CFG->amavisd_db_host
= "127.0.0.1";
8 $CFG->amavisd_db_port
= 3306;
9 $CFG->amavisd_db_name
= "amavisd";
10 $CFG->amavisd_db_user
= "amavisd";
11 $CFG->amavisd_db_password
= "suFt3oEEmmXTjFq1bjTXRNIPXhF41a";
12 $CFG->amavis_policy_port
= 9998;
14 $CFG->ldap_dsn
= "ldap://127.0.0.1:389";
15 $CFG->ldap_base_dn
= "o=domains,dc=datanom,dc=net";
18 $CFG->wblistadm_url
= "http://127.0.0.1:8080";
20 $CFG->root
= '/usr/share/quarantine-admin/';
21 $CFG->wwwroot
= '/qtadmin/';
24 $CFG->auth_method
= 'LDAP';
25 // If HTTP_AUTH is chosen configure admin user here
26 //$CFG->admin_user = 'some_admin';
28 $CFG->db_driver
= 'mysqli';
31 // Session timeout in minuts
32 // Default timeout is 20 minuts
33 $CFG->session_timeout
= 60;
41 // Default log level is error
45 // stderr = Log to stand error
46 // file = Log to file. Requires write permission
48 // Default log method is syslog
49 $CFG->log_method
= 'syslog';
51 // File to log to if log method is file
52 // Both relative and absolut path is accepted
53 // If path is relative root is $CFG->root
54 // Default file is $CFG->root.qtadmin.log
55 $CFG->log_file
= 'qtadmin.log';
This page took 0.110477 seconds and 6 git commands to generate.