<?php
/* vim: set ts=4 tw=0 sw=4 noet: */
+unset($CFG);
$CFG = new stdClass;
// Amavis
// Default timeout is 20 minuts
$CFG->session_timeout = 60;
+// Log level
+// 0 = no logging
+// 1 = error
+// 2 = warning
+// 3 = info
+// 4 = debug
+// Default log level is error
+$CFG->log_level = 4;
+
+// Log method
+// stderr = Stand Error
+// file = file to log to. Requires write permission to web server
+// syslog = syslog
+// Default log method is syslog
+$CFG->log_method = 'syslog';
?>