X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=neonserv.example.conf;h=ba99ed7cdfe76df97dc6f798f116c1cac2488486;hb=406c308308e4d131475a692cd425cb156e0776f1;hp=b0321641012c8b992ecf5a1f001d5caf921c4e0b;hpb=82f0cd1f3c2c0160944b0c627581f1994583e2b2;p=NeonServV5.git diff --git a/neonserv.example.conf b/neonserv.example.conf index b032164..ba99ed7 100644 --- a/neonserv.example.conf +++ b/neonserv.example.conf @@ -3,18 +3,87 @@ */ "MySQL" { - "host" = "127.0.0.1 "; + "host" = "127.0.0.1"; "port" = 3306; "user" = "neonserv"; "pass" = "password"; "base" = "neonserv"; }; +"statistics" { + "enable" = 0; + "frequency" = 5; //minutes + "include_lusers" = 1; //general network statistics + "execute" = "php scripts/statistic.php"; + /* parameters: + - visible users + - visible chanusers + - visible channels + - privmsg per minute + - commands per minute + - network users + - network channels + */ +}; "General" { + "worker_threads" = 5; //threads "alertchan" = ""; "have_halfop" = 0; + "CheckAuths" { + "enabled" = 1; + "start_time" = 3; //24h format + "duration" = 180; //minutes + "interval" = 2; //seconds + "min_unckecked" = 172800; //check auth only if unchecked for x seconds + //180 miutes, every 2 seconds: 5400 auth checks + "alertchan" = "#krypton.intern"; + }; }; "QServer" { - "enabled" = 1; + "enabled" = 0; "port" = 7499; "pass" = "blaa"; -}; \ No newline at end of file +}; +"log" { //neonserv.log + /* + 1 - INFO + 2 - ERROR + 4 - RAW + 8 - MYSQL + */ + "loglevel" = 3; +}; +"modules" { + "libglobalcmd" { + "enabled" = 1; + "protected" = 1; //may not be unloaded + }; + "libDummyServ" { + "enabled" = 1; + "protected" = 0; + }; + "libfuncmds" { + "enabled" = 1; + "protected" = 0; + }; + "libNeonHelp" { + "enabled" = 1; + "protected" = 0; + }; + "libNeonServ" { + "enabled" = 1; + "protected" = 0; + }; + "libNeonSpam" { + "enabled" = 1; + "protected" = 0; + }; + "libstats" { + "enabled" = 1; + "protected" = 0; + "hide_networkname" = 0; + "hide_botnick" = 0; + "hide_chancount" = 0; + "hide_usercount" = 0; + }; +}; +