X-Git-Url: http://git.pk910.de/?p=NeonServV5.git;a=blobdiff_plain;f=neonserv.example.conf;h=d93cd4242ba5b83460d2f481e9ccd6eee99099fc;hp=334d7308e15aa3924dbbd340e04fd349f5db6548;hb=bd91d8494c482eed01bf23f7bc8cae540cfee571;hpb=a1a39db1eb2716358e7b737c217f98f7b0dccfc6 diff --git a/neonserv.example.conf b/neonserv.example.conf index 334d730..d93cd42 100644 --- a/neonserv.example.conf +++ b/neonserv.example.conf @@ -28,6 +28,8 @@ "worker_threads" = 5; //threads "alertchan" = ""; "have_halfop" = 0; + //unregister NeonSpam channels together with NeonServ? + "sync_neonspam_unreg" = 1; "CheckAuths" { "enabled" = 1; "start_time" = 3; //24h format @@ -52,3 +54,60 @@ */ "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; + // How often to look for channels that have expired? + "chan_expire_freq" = "3d"; + // How long is a channel unvisited (by masters or above) before it can be expired? + "chan_expire_delay" = "30d"; + // Automatically register a Backup bot with NeonServ + "auto_backup_register" = 0; + // Automatically unregister all Backup when NeonServ gets removed + "auto_backup_unregister" = 1; + // BackupServ channel setting + "channel_backup_setting" = 1; + }; + "libNeonBackup" { + "enabled" = 1; + "protected" = 0; + }; + "libNeonSpam" { + "enabled" = 1; + "protected" = 0; + }; + "libstats" { + /* statistics module + this module doesn't extend the bot functions at all! + It will simply send a small UDP packet to neonserv.krypton-bouncer.de + this packet is used to keep the statistics on the website up to date. + + If you don't want your bot to be listed on this site just disable this plugin + (entries will be removed after 6h on the website) + */ + "enabled" = 1; + "protected" = 0; + "hide_networkname" = 0; //hide network name + "hide_botnick" = 0; //hide bot nick, ident, host + "hide_chancount" = 0; //hide joined channel count + "hide_usercount" = 0; //hide number of users the bot can see + }; +}; +