Add m_force to extensions/README and to the example config files.
This commit is contained in:
parent
9903cf1420
commit
0c33b827d0
|
@ -31,6 +31,7 @@
|
||||||
#loadmodule "extensions/sno_globaloper.so";
|
#loadmodule "extensions/sno_globaloper.so";
|
||||||
#loadmodule "extensions/sno_whois.so";
|
#loadmodule "extensions/sno_whois.so";
|
||||||
#loadmodule "extensions/ip_cloaking.so";
|
#loadmodule "extensions/ip_cloaking.so";
|
||||||
|
#loadmodule "extensions/m_force.so";
|
||||||
|
|
||||||
serverinfo {
|
serverinfo {
|
||||||
name = "hades.arpa";
|
name = "hades.arpa";
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
* Remote k/d/x line active notices -- sno_globalkline.so
|
* Remote k/d/x line active notices -- sno_globalkline.so
|
||||||
* Remote oper up notices -- sno_globaloper.so
|
* Remote oper up notices -- sno_globaloper.so
|
||||||
* /whois notifications (snomask +W) -- sno_whois.so
|
* /whois notifications (snomask +W) -- sno_whois.so
|
||||||
|
* Force join users to channels -- m_force.so
|
||||||
*/
|
*/
|
||||||
#loadmodule "extensions/chm_adminonly.so";
|
#loadmodule "extensions/chm_adminonly.so";
|
||||||
#loadmodule "extensions/chm_operonly.so";
|
#loadmodule "extensions/chm_operonly.so";
|
||||||
|
@ -93,6 +94,7 @@
|
||||||
#loadmodule "extensions/sno_globalkline.so";
|
#loadmodule "extensions/sno_globalkline.so";
|
||||||
#loadmodule "extensions/sno_globaloper.so";
|
#loadmodule "extensions/sno_globaloper.so";
|
||||||
#loadmodule "extensions/sno_whois.so";
|
#loadmodule "extensions/sno_whois.so";
|
||||||
|
#loadmodule "extensions/m_force.so";
|
||||||
|
|
||||||
/* serverinfo {}: Contains information about the server. (OLD M:) */
|
/* serverinfo {}: Contains information about the server. (OLD M:) */
|
||||||
serverinfo {
|
serverinfo {
|
||||||
|
|
|
@ -44,6 +44,12 @@ m_omode.c - OMODE - Allows an admin to do all sorts of evil upon a
|
||||||
no_oper_invis.c - Disallow opers setting marking themselves as invisible
|
no_oper_invis.c - Disallow opers setting marking themselves as invisible
|
||||||
(+i) unless they have the hidden_oper flag.
|
(+i) unless they have the hidden_oper flag.
|
||||||
|
|
||||||
|
m_force.c - Allows opers to FORCEJOIN users to any channel they
|
||||||
|
so desire, regardless of bans or restricting modes
|
||||||
|
that may be keeping them out. Similar to the SAJOIN
|
||||||
|
command in other ircds.
|
||||||
|
Syntax: FORCEJOIN <user> <channel>
|
||||||
|
|
||||||
example_module.c - An example module to be used for creating your own.
|
example_module.c - An example module to be used for creating your own.
|
||||||
Syntax: TEST
|
Syntax: TEST
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue