diff options
| author | Adam <Adam@anope.org> | 2010-07-10 19:08:16 -0400 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2010-07-10 19:08:16 -0400 |
| commit | 4b1e76c3bb7baa5ece83779889a46420ded3e495 (patch) | |
| tree | 442b8e34d30641f1b6d455bb0eb10d3240b7f344 /data | |
| parent | 166d6f5d0933a3c639b869235f0fabdfac499886 (diff) | |
Added ns_set_misc and cs_set_misc.
These modules allows users to configure settable options in /ns and /cs set
that will be displayed in /ns and /cs info.
Removed os_info, cs_set_url, ns_set_url, cs_set_email, ns_set_icq
Diffstat (limited to 'data')
| -rw-r--r-- | data/example.conf | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/data/example.conf b/data/example.conf index d66e98611..6c5c87bc7 100644 --- a/data/example.conf +++ b/data/example.conf @@ -979,7 +979,7 @@ chanserv * The core modules to load for ChanServ. This is a space separated list that corresponds * to the base names of the modules for ChanServ. This directive is optional, but highly recommended. */ - modules = "cs_help cs_register cs_set cs_saset cs_set_bantype cs_set_description cs_set_email cs_set_entrymsg cs_set_founder cs_set_keeptopic cs_set_mlock cs_set_opnotice cs_set_peace cs_set_persist cs_set_private cs_set_restricted cs_set_secure cs_set_securefounder cs_set_secureops cs_set_signkick cs_set_successor cs_set_topiclock cs_set_url cs_set_xop cs_xop cs_access cs_akick cs_drop cs_ban cs_clear cs_modes cs_getkey cs_invite cs_kick cs_list cs_topic cs_info cs_forbid cs_suspend cs_status cs_unban" + modules = "cs_help cs_register cs_set cs_saset cs_set_bantype cs_set_description cs_set_entrymsg cs_set_founder cs_set_keeptopic cs_set_mlock cs_set_opnotice cs_set_peace cs_set_persist cs_set_private cs_set_restricted cs_set_secure cs_set_securefounder cs_set_secureops cs_set_signkick cs_set_successor cs_set_topiclock cs_set_xop cs_xop cs_access cs_akick cs_drop cs_ban cs_clear cs_modes cs_getkey cs_invite cs_kick cs_list cs_topic cs_info cs_forbid cs_suspend cs_status cs_unban" /* * The default options for newly registered channels. Note that changing these options @@ -1553,7 +1553,6 @@ module { name = "os_ignore" } module { name = "cs_appendtopic" } module { name = "cs_enforce" } module { name = "ns_maxemail" } -module { name = "os_info" } module { name = "hs_request" } /* @@ -1577,6 +1576,42 @@ db_plain database = "anope.db" } +module { name = "cs_set_misc" } +cs_set_misc +{ + name = "OINFO" + desc = "Associate oper only information to this channel" + operonly = yes +} +cs_set_misc +{ + name = "URL" + desc = "Associate a URL with the channel" +} +cs_set_misc +{ + name = "EMail" + desc = "Associate an EMail with the channel" +} + +module { name = "ns_set_misc" } +ns_set_misc +{ + name = "OINFO" + desc = "Associate oper only information to this nick" + operonly = yes +} +ns_set_misc +{ + name = "URL" + desc = "Associate a URl with the nick" +} +ns_set_misc +{ + name = "ICQ" + desc = "Associate an ICQ number with the nick" +} + #module { name = "m_helpchan" } m_helpchan { |
