X-Git-Url: http://git.pk910.de/?p=NeonServV5.git;a=blobdiff_plain;f=neonserv.example.conf;h=afa81c01de00b796ca245b5fcb01319709f51833;hp=5be3085bb2daa1d7b2c69918de22562b24f4f569;hb=86a53c0bc70a1785fd0de9a172c8e3a2701a9e3c;hpb=8b89857bfaca58d04c19b31a73f1d7d8575940db diff --git a/neonserv.example.conf b/neonserv.example.conf index 5be3085..afa81c0 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 @@ -37,6 +39,15 @@ //180 miutes, every 2 seconds: 5400 auth checks "alertchan" = "#krypton.intern"; }; + "UserBots" { + "OtherServ" { + "enabled" = 1; + "nick" = "OtherServ,OtherServ2"; //optional check (mask) + "sourcebot" = "NeonServ"; //send messages through a bot of this botclass + "opless_part" = "PRIVMSG %s :part %s"; //args: botnick, channel + "opless_join" = "PRIVMSG %s :join %s"; //args: botnick, channel + }; + }; }; "QServer" { "enabled" = 0; @@ -72,10 +83,40 @@ "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 + }; };