Tweak default access restrictions for "set unreviewed *".
[srvx.git] / srvx.conf.example
index 8b76a07e96738a750f4daaf1c173f58881ccc15c..e4f3420e8e5ba2fbfa0f6445d243a415982d56a0 100644 (file)
 "services" {
     "nickserv" {
         "nick" "NickServ";
-        // If you want to by have *@* as the default hostmask, set
-        // default_hostmask.  This is discouraged for security reasons.
+       // What user modes do you want this service to have? Please keep in
+       // mind which ircd software you are using here, and that all of the
+       // services need to be at least +o.
+       // "modes" "+iok";
+        // If you want to by have *@* as the default hostmask for all
+        // new accounts, set default_hostmask.  This is discouraged
+        // for security reasons.
         // "default_hostmask" "1";
         // do we warn users when someone new auths to their account?
         "warn_clone_auth" "1";
         "accounts_per_email" "1"; // you may want to increase this; or not
         "email_search_level" "600"; // minimum OpServ level to search based on email address
         "email_visible_level" "800"; // minimum OpServ level to see somebody's email address
-
-        "set_title_level" "900"; // minimum OpServ level to set a title on an account
-        "set_fakehost_level" "1000"; // minimum OpServ level to set a freeform fakehost on an account
-        "titlehost_suffix" "example.net"; // suffix to use with automatically generated fakehosts
     };
 
     "opserv" {
         "nick" "OpServ";
+       // What user modes do you want this service to have? Please keep in
+       // mind which ircd software you are using here, and that all of the
+       // services need to be at least +o.
+       // "modes" "+iok";
+        // should use of this service be limited to global opers?
         "privileged" "1";
+        // fullname for service
+        "description" "Oper Service Bot";
+        // hostname for service; only used if "description" is also set
+        "hostname" "dances-all-night-with.srvx.net";
         // what channel should opserv send debug output to?
         "debug_channel" "#opserv";
         "debug_channel_modes" "+tinms";
             "size" "200";
             "drain-rate" "3";
         };
-        // character to make OpServ pay attention to you
-        "trigger" "?";
     };
 
     "chanserv" {
         // (This is changed relative srvx-1.0.x, which would use default
         // unless you specified ".disabled".)
         "nick" "ChanServ";
+       // What user modes do you want this service to have? Please keep in
+       // mind which ircd software you are using here, and that all of the
+       // services need to be at least +o.
+       // "modes" "+iok";
+        // Does your ircd have off-channel services support? Does it have
+       // a registered channel mode? Does it support services opping themselves?
+        // Bahamut has these things; ircu2.10.11 does not.
+       // This setting takes three numerical values:
+       //   0 = off
+       //   1 = use a registered channel mode, have services op themselves
+       //   2 = all of the above, and a channel setting to have ChanServ not
+       //       idle in the channel
+        "off_channel" "0";
         // how long should a person be unseen before resending infoline?
         "info_delay" "120";
         // maximum greeting length
-        "max_greetlen" "120";
+        "max_greetlen" "200";
         // maximum users in a channel userlist
         "max_chan_users" "512";
         // maximum bans on a channel banlist
         "max_chan_bans" "512";
+        // maximum length of a user's infoline
+        "max_userinfo_length" "400";
         // If DynLimit is on and there are N users in the channel, ChanServ will
         // try to keep the limit at N+<adjust_threshold>.
         "adjust_threshold" "15";
         "chan_expire_freq" "3d";
         // How long is a channel unvisited (by masters or above) before it can be expired?
         "chan_expire_delay" "30d";
-        // character to make ChanServ pay attention to you
-        "trigger" "!";
+        // How often to look for dnrs that have expired?
+        "dnr_expire_freq" "1h";
         // what !set options should we show when user calls "!set" with no arguments?
-        "set_shows" ("DefaultTopic", "TopicMask", "Greeting", "UserGreeting", "Modes", "PubCmd", "StrictOp", "AutoOp", "EnfModes", "EnfTopic", "Protect", "Toys", "Setters", "TopicRefresh", "CtcpUsers", "CtcpReaction",
-                "Voice", "UserInfo", "DynLimit", "TopicSnarf", "NoDelete");
+        "set_shows" ("DefaultTopic", "TopicMask", "Greeting", "UserGreeting", "Modes", "PubCmd", "InviteMe", "StrictOp", "AutoOp", "EnfModes", "EnfTopic", "TopicSnarf", "UserInfo", "GiveVoice", "GiveOps", "EnfOps", "Setters", "CtcpUser", "CtcpReaction", "Protect", "Toys", "DynLimit", "NoDelete");
 
         // A list of !8ball responses
         "8ball" ("Not a chance.",
         "default_modes" "+nt";
         // minimum opserv access to set, clear or override nodelete setting?
         "nodelete_level" "1";
+        // how long before a new channel owner can give ownership away?
+        "giveownership_timeout" "1w";
     };
 
     "global" {
         "nick" "Global";
+       // What user modes do you want this service to have? Please keep in
+       // mind which ircd software you are using here, and that all of the
+       // services need to be at least +o.
+       // "modes" "+iok";
         // should users get community announcements by default or not?
         "announcements_default" "on";
     };
         "message_expiry" "30d"; // age when messages are deleted; set
                                 // to 0 to disable message expiration
     };
+    "qserver" {
+        "address" "127.0.0.1";
+        "port" "7702";
+        "password" "hello";
+    };
 };
 
 "policers" {
     "max_cycles" "30"; // max uplink cycles before giving up
     // Admin information is traditionally: location, location, email
     "admin" ("IRC Network", "Gotham City, GO", "Mr Commissioner <james.gordon@police.gov>");
+    /* the following two settings are for ircu's HEAD_IN_SAND features, and are equivelent to
+     * the F: lines in ircu's ircd.conf. both can be disabled by commenting them out. */
+    "his_servername" "*.Generic.NET"; // hidden server name, shown in remote /whois requests
+    "his_servercomment" "The Generic, Boring IRC Network";
 };
 
 // controlling how services (mostly NickServ) send mail