I installed the v3.2.5 binaries for Win32 on WinXP Pro with SP2.
I disabled all firewalls running on WinXP.
I created a new conf file with all required settings.
When I start Unreal, the service.log file shows:
Code: Select all
* Loading IRCd configuration ..
* Configuration loaded without any problems ..This is (part of) my conf file:
Code: Select all
me {
name "127.0.0.1";
info "My IRC Server";
numeric 1;
};
admin {
"sa";
"[email protected]";
};
class clients {
pingfreq 150;
maxclients 10;
sendq 100000;
recvq 10000;
};
allow {
ip *;
hostname *;
class clients;
};
listen *:6667 {
};
include aliases/anope.conf;
loadmodule "modules/commands.dll";
loadmodule "modules/cloak.dll";
set {
kline-address "[email protected]";
maxchannelsperuser 10;
dns {
nameserver 127.0.0.1;
timeout 3s;
retries 0;
};
network-name "My IRC";
default-server "127.0.0.1";
services-server "127.0.0.1";
help-channel "#help";
cloak-keys {
"Cloaked123Cloaked";
"Cloaked456Cloaked";
"Cloaked789Cloaked";
};
hiddenhost-prefix "irc";
hosts {
global "global.mail.me";
coadmin "coadmin.mail.me";
admin "admin.mail.me";
servicesadmin "servicesadmin.mail.me";
netadmin "netadmin.mail.me";
};
};Is there any way I can generate a more detailed debug log when the wIRCd is starting?
Thanks a lot !