summaryrefslogtreecommitdiff
path: root/docs/modules.conf.example
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2010-02-07 05:24:06 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2010-02-07 05:24:06 +0000
commitf91f6495f4830ebca44df0f695caf84308fb46e1 (patch)
tree2644649c95211829cd1b65169bfaf337f063d701 /docs/modules.conf.example
parentd1b146808e53494f42cd6c89f81a6106b7bde2c2 (diff)
Update example config for passforward and RPC module changes [jdhore]
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12395 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/modules.conf.example')
-rw-r--r--docs/modules.conf.example28
1 files changed, 20 insertions, 8 deletions
diff --git a/docs/modules.conf.example b/docs/modules.conf.example
index 82e722f59..4db33190d 100644
--- a/docs/modules.conf.example
+++ b/docs/modules.conf.example
@@ -1244,6 +1244,26 @@
#<module name="m_opermodes.so">
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
+# Password forwarding module: Forwards a password users can send on connect
+# to the specified client below. The client is usually nickserv and this
+# module is usually used to authenticate users with nickserv using their
+# connect password.
+#<module name="m_passforward.so">
+
+<passforward
+ # nick: nick to forward connect passwords to.
+ nick="NickServ"
+
+ # forwardmsg: Message to send to users using a connect password.
+ # $nick will be the users' nick, $nickrequired will be the nick
+ # of where the password is going (the nick above).
+ forwardmsg="NOTICE $nick :*** Forwarding PASS to $nickrequired"
+
+ # cmd: Command for the nick to run when it recieves a connect
+ # password.
+ cmd="PRIVMSG $nickrequired :IDENTIFY $pass">
+
+#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# Oper password hash module: Allows hashed oper passwords
# Relies on the module m_md5.so and/or m_sha256.so being loaded before
# m_password_hash.so in the configuration file.
@@ -1408,14 +1428,6 @@
# so that at least \s or [[:space:]] is available.
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
-# JSON-RPC module: Encode and decode JSON-RPC requests for modules
-#<module name="m_rpc_json.so">
-
-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
-# RPC test module: A test of the RPC API
-#<module name="m_rpctest.so">
-
-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
# SAJOIN module: Adds the /SAJOIN command
# This module is oper-only.
# To use, SAJOIN must be in one of your oper class blocks.