http://bugzilla.spamassassin.org/show_bug.cgi?id=3625
------- Additional Comments From [EMAIL PROTECTED] 2004-08-25 15:08 -------
Woah! Sorry I wrote kill -9. I was doing kill -TERM on the processes.
That's what caused the mess.
syslog-ng.conf is as follows:
# syslog-ng configuration file.
#
# This should behave pretty much like the original syslog on RedHat. But
# it could be configured a lot smarter.
#
# See syslog-ng(8) and syslog-ng.conf(5) for more information.
#
# 20000925 [EMAIL PROTECTED]
#
# Updated by Frank Crawford (<[EMAIL PROTECTED]>) - 10 Aug 2002
# - for Red Hat 7.3
# - totally do away with klogd
# - add message "kernel:" as is done with klogd.
#
# Updated by Frank Crawford (<[EMAIL PROTECTED]>) - 22 Aug 2002
# - use the log_prefix option as per Balazs Scheidler's email
#
options { sync (0);
time_reopen (10);
log_fifo_size (1000);
long_hostnames (off);
use_dns (no);
use_fqdn (no);
create_dirs (no);
keep_hostname (yes);
};
source s_sys { pipe ("/proc/kmsg" log_prefix("kernel: ")); unix-stream
("/dev/lo
g"); internal(); };
source s_squid { pipe ("/var/log/squid/access.log.fifo"); };
destination d_mesg { file("/var/log/messages"); };
destination d_auth { file("/var/log/secure"); };
destination d_boot { file("/var/log/boot.log"); };
destination d_cron { file("/var/log/cron"); };
destination d_mlal { usertty("*"); };
destination d_net { };
destination d_spamdlog { file("/var/log/spamd.log"); };
destination d_squidaccess { file("/var/log/squid/access.log" template
("$MSG\n"))
; };
destination d_exim_mainlog { program("/usr/local/redphish/snapin/esoft/mail-
rela
y/src/eximlog InstaGate >> /var/log/exim/exim_mainlog" template("$MSG\n")); };
destination d_exim_rejectlog { program("/usr/local/redphish/snapin/esoft/mail-
re
lay/src/eximlog InstaGate >> /var/log/exim/exim_rejectlog" template("$MSG\n"));
};
destination d_exim_paniclog { program("/usr/local/redphish/snapin/esoft/mail-
rel
ay/src/eximlog InstaGate >> /var/log/exim/exim_paniclog" template
("$MSG\n")); };
filter f_kernel { facility(kern); };
filter f_general { level(info..emerg) and
(facility(auth) or facility(daemon) or facility(kern) or
facility(security)
or facility(syslog) or facility(user) or facility
(local7
)); };
filter f_access { facility(authpriv); };
filter f_emerg { level(emerg); };
filter f_local7 { facility(local7); };
filter f_cron { facility(cron); };
filter f_spamfilter { facility(mail) and program("spamd"); };
filter f_squid { facility(local4); };
filter f_exim_all { program("^exim$"); };
filter f_exim_main { program("^exim$") and level(info); };
filter f_exim_reject { program("^exim$") and level(notice); };
filter f_exim_panic { program("^exim$") and level(alert); };
filter f_exim_welf { facility(mail) and program("eximlog"); };
log { source(s_sys); filter(f_emerg); destination(d_mlal); };
log { source(s_sys); filter(f_general); destination(d_mesg); };
log { source(s_sys); filter(f_local7); destination(d_boot); };
log { source(s_sys); filter(f_cron); destination(d_cron); };
log { source(s_sys); filter(f_access); destination(d_auth); };
destination d_lost { file("/var/log/lostbits"); };
log { source(s_sys); destination(d_lost); flags(fallback); };
log { source(s_sys); filter(f_exim_main); destination(d_exim_mainlog); };
log { source(s_sys); filter(f_exim_reject); destination(d_exim_rejectlog); };
log { source(s_sys); filter(f_exim_panic); destination(d_exim_paniclog); };
log { source(s_squid); destination(d_squidaccess); };
log { source(s_sys); filter(f_spamfilter); destination(d_spamdlog); };
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.