diff options
author | Robby- <robby@chat.be> | 2013-01-31 06:19:14 +0100 |
---|---|---|
committer | Robby- <robby@chat.be> | 2013-01-31 06:19:14 +0100 |
commit | aea86906f40775e92c5219266eef7dfdb05f6589 (patch) | |
tree | d1487100ce9b1e716ab7945cef6126093dcab1dc /data/botserv.example.conf | |
parent | a62698a14a1c8b735050845b752f7a0f7175c227 (diff) |
Some configuration file updates: Removed now non-existing settings. Redid some existing settings to look more consistent/uniform. Added some missing commands/permissions.
Merged operserv/modlist permission into operserv/modinfo.
Fixed ChanServ INFO privilege to actually work for /BotServ INFO too for those users who have it, instead of only for founders.
Fixed some typos aswell as removed whitespaces along the way.
Diffstat (limited to 'data/botserv.example.conf')
-rw-r--r-- | data/botserv.example.conf | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/data/botserv.example.conf b/data/botserv.example.conf index d84473826..93d9a9d16 100644 --- a/data/botserv.example.conf +++ b/data/botserv.example.conf @@ -35,8 +35,8 @@ service * These modes are very IRCd specific. If left commented, sane defaults * are used based on what protocol module you have loaded. * - * Note that setting this option incorrectly could potentially BREAK some if - * not all usefulness of the client. We will not support you if this client is + * Note that setting this option incorrectly could potentially BREAK some, if + * not all, usefulness of the client. We will not support you if this client is * unable to do certain things if this option is enabled. */ #modes = "+o" @@ -46,7 +46,7 @@ service * of log channels this is not very useful, as the service will just idle in the * specified channels, and will not accept any types of commands. * - * Prefixes may be given to the channels in the form of mode character or prefix symbol. + * Prefixes may be given to the channels in the form of mode characters or prefix symbols. */ #channels = "@#services,#mychan" } @@ -131,7 +131,7 @@ botserv #casesensitive = yes /* - * Defines the prefixs for fantasy commands in channels. One of these characters will have to be prepended + * Defines the prefixes for fantasy commands in channels. One of these characters will have to be prepended * to all fantasy commands. If you choose "!", for example, fantasy commands will be "!kick", * "!op", etc. This directive is optional, if left out, the default fantasy character is "!". */ @@ -244,7 +244,7 @@ command { service = "BotServ"; name = "KICK"; command = "botserv/kick"; } * Provides the commands: * botserv/set/dontkickops - Used for preventing BotServ from kicking channel operators. * botserv/set/dontkickvoices - Used for preventing BotServ from kicking voices. - * botserv/set/fantasy - Used for enabling or disabling BotServ's fantaisist commands. + * botserv/set/fantasy - Used for enabling or disabling BotServ's fantasist commands. * botserv/set/greet - Used for enabling or disabling BotServ's greet messages in a channel. * botserv/set/nobot - Used to prohibit specific channels from being assigned BotServ bots. * botserv/set/private - Used to prohibit specific BotServ bots from being assigned to channels. @@ -252,7 +252,6 @@ command { service = "BotServ"; name = "KICK"; command = "botserv/kick"; } * Used for setting options such as kickers and fantasy replies. */ module { name = "bs_set" } - command { service = "BotServ"; name = "SET"; command = "botserv/set"; } command { service = "BotServ"; name = "SET DONTKICKOPS"; command = "botserv/set/dontkickops"; } command { service = "BotServ"; name = "SET DONTKICKVOICES"; command = "botserv/set/dontkickvoices"; } @@ -268,7 +267,6 @@ command { service = "BotServ"; name = "SET PRIVATE"; command = "botserv/set/priv * * Sane defaults are provided below that do not need to be edited unless you wish to change the default behavior. */ - fantasy { name = "ACCESS"; command = "chanserv/access"; } fantasy { name = "AKICK"; command = "chanserv/akick"; } fantasy { name = "AOP"; command = "chanserv/aop"; } @@ -278,19 +276,19 @@ fantasy { name = "DOWN"; command = "chanserv/down"; } fantasy { name = "ENFORCE"; command = "chanserv/enforce"; } fantasy { name = "ENTRYMSG"; command = "chanserv/entrymsg"; } fantasy { name = "FLAGS"; command = "chanserv/flags"; } -fantasy { name = "HELP"; command = "generic/help"; prepend_channel = false } +fantasy { name = "HELP"; command = "generic/help"; prepend_channel = false; } fantasy { name = "HOP"; command = "chanserv/hop"; } -fantasy { name = "INFO"; command = "chanserv/info"; prepend_channel = false } +fantasy { name = "INFO"; command = "chanserv/info"; prepend_channel = false; } fantasy { name = "INVITE"; command = "chanserv/invite"; } fantasy { name = "K"; command = "chanserv/kick"; } fantasy { name = "KB"; command = "chanserv/ban"; } fantasy { name = "KICK"; command = "chanserv/kick"; } fantasy { name = "LEVELS"; command = "chanserv/levels"; } -fantasy { name = "LIST"; command = "chanserv/list"; prepend_channel = false } +fantasy { name = "LIST"; command = "chanserv/list"; prepend_channel = false; } fantasy { name = "LOG"; command = "chanserv/log"; } fantasy { name = "MODE"; command = "chanserv/mode"; } fantasy { name = "QOP"; command = "chanserv/qop"; } -fantasy { name = "SEEN"; command = "chanserv/seen"; prepend_channel = false } +fantasy { name = "SEEN"; command = "chanserv/seen"; prepend_channel = false; } fantasy { name = "SOP"; command = "chanserv/sop"; } fantasy { name = "STATUS"; command = "chanserv/status"; } fantasy { name = "SUSPEND"; command = "chanserv/suspend"; permission = "chanserv/suspend"; } @@ -301,8 +299,8 @@ fantasy { name = "UNSUSPEND"; command = "chanserv/unsuspend"; permission = "chan fantasy { name = "UP"; command = "chanserv/up"; } fantasy { name = "VOP"; command = "chanserv/vop"; } -/* Use m_rewrite to rewrite the op, deop, etc. fantasy commands (see chanserv.conf). */ +/* Use m_rewrite to rewrite the op, deop, etc. fantasy commands (see chanserv.conf). */ fantasy { name = "OWNER"; command = "rewrite"; } fantasy { name = "DEOWNER"; command = "rewrite"; } @@ -317,4 +315,3 @@ fantasy { name = "DEHALFOP"; command = "rewrite"; } fantasy { name = "VOICE"; command = "rewrite"; } fantasy { name = "DEVOICE"; command = "rewrite"; } - |