]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - doc/reference.conf
Move flood_attack_channel to channel.c so it can be used outside m_message.c
[irc/rqf/shadowircd.git] / doc / reference.conf
index 5e2e061fdccb89b9acfe4de0075494cacbb4e95b..539ee69292770e8320fcd6598fdedc40d7df044d 100755 (executable)
@@ -74,6 +74,7 @@
  * /olist - see all channels in /list, oper only     -- m_olist.so
  * /okick - kick users without having ops, oper only -- m_okick.so
  * /forcejoin - force join users, admin only         -- m_force.so
+ * roleplay commands - send msgs from fake users     -- m_roleplay.so
  * Opers cannot be invisible (umode +i)              -- no_oper_invis.so
  * Far connection notices (snomask +F)               -- sno_farconnect.so
  * Remote k/d/x line active notices                  -- sno_globalkline.so
@@ -109,6 +110,7 @@ loadmodule "extensions/m_webirc.so";
 #loadmodule "extensions/m_olist.so";
 #loadmodule "extensions/m_okick.so";
 #loadmodule "extensions/m_force.so";
+#loadmodule "extensions/m_roleplay.so";
 #loadmodule "extensions/no_oper_invis.so";
 loadmodule "extensions/sno_farconnect.so";
 loadmodule "extensions/sno_globalkline.so";
@@ -164,10 +166,10 @@ serverinfo {
        #vhost6 = "3ffe:80e8:546::2";
        
        /* ssl_private_key: our ssl private key */
-       ssl_private_key = "etc/test.key";
+       ssl_private_key = "etc/ssl.key";
 
        /* ssl_cert: certificate for our ssl server */
-       ssl_cert = "etc/test.cert";
+       ssl_cert = "etc/ssl.cert";
 
        /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
        ssl_dh_params = "etc/dh.pem";
@@ -340,6 +342,15 @@ auth {
        user = "*@172.16.0.0/12";
        user = "*test@123D:B567:*";
 
+       /* auth_user: The username (authenticated via SASL or PASS) allowed
+        * to connect. You are able to put multiple auth_user lines. If people
+        * are authenticating via SASL in this way, it is recommended to comment
+        * out the password option below. You will also *NEED* to specify a user
+        * line above auth_user, this can safely be "*@*", however.
+        */
+       auth_user = "jilles";
+       auth_user = "jdhore";
+
        /* password: an optional password that is required to use this block.
         * By default this is not encrypted, specify the flag "encrypted" in
         * flags = ...; below if it is.
@@ -813,7 +824,7 @@ channel {
        max_chans_per_user = 15;
 
         /* max bans: maximum number of +b/e/I/q modes in a channel */
-        max_bans = 25;
+        max_bans = 100;
 
         /* max bans: maximum number of +b/e/I/q modes in a +L channel */
         max_bans_large = 500;