]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/conf/helpop.conf.example
aa63da185169f525f2b4f53792f2428c963805eb
[user/henk/code/inspircd.git] / docs / conf / helpop.conf.example
1 # Sample configuration file for the helpop module.
2 # You can either copy this into your conf folder and set up the module to use it,
3 # or you can customize the responses for your network and/or add more.
4 #
5 # The way the new helpop system works is simple. You use one or more helpop tags.
6 #   <helpop key="moo" value="something here">
7 # key is what the user is looking for (i.e. /helpop moo), and value is what they get back
8 # (note that it can span multiple lines!).
9 #   -- w00t 16/dec/2006
10 #
11
12 <config format="xml">
13
14 <alias text="HELP" replace="HELPOP $2-">
15
16 <helpmsg nohelp="There is no help for the topic you searched for. Please try again.">
17
18 <helpop key="start" value="InspIRCd Help System
19
20 This system provides help for commands and modes.
21 Specify your question or a command name as the
22 parameter for this command.
23
24 /HELPOP CUSER    -      To see a list of user commands
25 /HELPOP COPER    -      To see a list of oper commands
26 /HELPOP UMODES   -      To see a list of user modes
27 /HELPOP CHMODES  -      To see a list of channel modes
28 /HELPOP SNOMASKS -      To see a list of oper snotice masks
29 /HELPOP EXTBANS  -      To see a list of extended bans">
30
31 <helpop key="cuser" value="User Commands
32 -------------
33
34 ACCEPT      ADMIN       AWAY        COMMANDS    CYCLE       DCCALLOW
35 FPART       INFO        INVITE      ISON        JOIN        KICK
36 KNOCK       LINKS       LIST        LUSERS      MAP         MKPASSWD
37 MODE        MODULES     MONITOR     MOTD        NAMES       NICK
38 NOTICE      OPER        PART        PASS        PING        PONG
39 PRIVMSG     QUIT        REMOVE      SETNAME     SILENCE     SQUERY
40 SSLINFO     STATS       TBAN        TIME        TITLE       TOPIC
41 UNINVITE    USER        USERHOST    VERSION     VHOST       WATCH
42 WHO         WHOIS       WHOWAS">
43
44 <helpop key="squery" value="/SQUERY <target> :<message>
45
46 Sends a message to the network service specified in <target>.">
47
48 <helpop key="sslinfo" value="/SSLINFO <nick>
49
50 Displays information on the SSL connection and certificate of the
51 target user.">
52
53 <helpop key="uninvite" value="/UNINVITE <nick> <channel>
54
55 Uninvite a user from a channel, same syntax as INVITE.">
56
57 <helpop key="tban" value="/TBAN <channel> <duration> <banmask>
58
59 Sets a timed ban. The duration of the ban can be specified in the
60 form of 1y2w3d4h5m6s - meaning one year, two weeks, three days,
61 four hours, five minutes and six seconds. All fields in this
62 format are optional. Alternatively, the ban may just be specified
63 as a number of seconds. All timed bans appear in the banlist as
64 normal bans and may be safely removed before their time is up.">
65
66 <helpop key="dccallow" value="/DCCALLOW [(+|-)<nick> [<time>]]|[LIST|HELP]
67
68 /DCCALLOW - List allowed nicks
69 /DCCALLOW LIST - This also lists allowed nicks
70 /DCCALLOW +<nick> [<duration>] - Add a nick
71 /DCCALLOW -<nick> - Remove a nick
72 /DCCALLOW HELP - Display help
73
74 Duration is optional, and may be specified in seconds or in the
75 form of 1y2w3d4h5m6s - meaning one year, two weeks, three days,
76 four hours, five minutes and six seconds. All fields in this
77 format are optional.">
78
79 <helpop key="accept" value="/ACCEPT *|(+|-)<nick>[,(+|-)<nick>]+
80
81 Manages your accept list. This list is used to determine who can
82 private message you when you have user mode +g set.
83
84 /ACCEPT * - List accepted nicks
85 /ACCEPT +<nick> - Add a nick
86 /ACCEPT -<nick> - Remove a nick
87
88 This command accepts multiple nicks like so:
89 /ACCEPT +<nick>,-<nick>,+<nick>">
90
91 <helpop key="cycle" value="/CYCLE <channel> [:<reason>]
92
93 Cycles a channel (leaving and rejoining), overrides restrictions that
94 would stop a new user joining, such as user limits and channel keys.">
95
96 <helpop key="title" value="/TITLE <username> <password>
97
98 Authenticate for a WHOIS title line and optionally a vhost using the
99 specified username and password.">
100
101 <helpop key="watch" value="/WATCH C|L|l|S|(+|-)<nick> [(+|-)<nick>]+
102
103 /WATCH         - List watched nicks that are online
104 /WATCH l       - List watched nicks that are online
105 /WATCH L       - List watched nicks, online and offline
106 /WATCH C       - Clear all watched nicks
107 /WATCH S       - Show statistics
108 /WATCH +<nick> - Add a nick
109 /WATCH -<nick> - Remove a nick
110
111 This command accepts multiple nicks like so:
112 /WATCH +<nick> -<nick> +<nick>">
113
114 <helpop key="monitor" value="/MONITOR C|L|S|(+|-) <nick>[,<nick>]+
115
116 /MONITOR L        - List all monitored nicks, not differentiating between
117                     online and offline nicks
118 /MONITOR C        - Clear all monitored nicks
119 /MONITOR S        - List all monitored nicks, indicating which are online
120                     and which are offline
121 /MONITOR + <nick> - Add a nick
122 /MONITOR - <nick> - Remove a nick
123
124 This command accepts multiple nicks like so:
125 /MONITOR + <nick>,<nick>,<nick>
126 /MONITOR - <nick>,<nick>,<nick>">
127
128 <helpop key="vhost" value="/VHOST <username> <password>
129
130 Authenticate for a vhost using the specified username and password.">
131
132 <helpop key="remove" value="/REMOVE <channel> <nick> [:<reason>]
133
134 Removes a user from a channel you specify. You must be at least a
135 channel halfoperator to remove a user. A removed user will part with
136 a message stating they were removed from the channel and by whom.">
137
138 <helpop key="rmode" value="/RMODE <channel> <mode> [<pattern>]
139
140 Removes listmodes from a channel, optionally matching a glob-based pattern.
141 E.g. '/RMODE #channel b m:*' will remove all mute extbans on the channel.">
142
143 <helpop key="fpart" value="/FPART <channel> <nick> [:<reason>]
144
145 This behaves identically to /REMOVE. /REMOVE is a built-in mIRC command
146 which caused trouble for some users.">
147
148 <helpop key="silence" value="/SILENCE [(+|-)<mask> [CcdiNnPpTtx]]
149
150 A server-side ignore of the given n!u@h mask. If the optional flags field is
151 specified then it must contain one or more flags which specify what kind of
152 messages should be blocked and how they should be blocked.
153
154 /SILENCE - Shows a list of silenced masks
155 /SILENCE +<mask> [<flags>] - Add a mask
156 /SILENCE -<mask> - Remove a mask
157
158 Valid SILENCE Flags
159 -------------------
160  C    Matches a CTCP targeted at a user.
161  c    Matches a CTCP targeted at a channel.
162  d    Default behaviour; equivalent to CciNnPpTt.
163  i    Matches an invite to a channel.
164  N    Matches a NOTICE targeted at a user.
165  n    Matches a NOTICE targeted at a channel.
166  P    Matches a PRIVMSG targeted at a user.
167  p    Matches a PRIVMSG targeted at a channel.
168  T    Matches a TAGMSG targeted at a user.
169  t    Matches a TAGMSG targeted at a channel.
170  x    Exempt the mask from silence rules.
171
172 Any combination of flags is valid.">
173
174 <helpop key="knock" value="/KNOCK <channel> :<reason>
175
176 Sends a notice to a channel indicating you wish to join.">
177
178 <helpop key="user" value="/USER <username> <unused> <unused> :<realname>
179
180 This command is used by your client to register your
181 IRC session, providing your ident and real name to the
182 server.
183
184 You should not use it during an established connection.">
185
186 <helpop key="nick" value="/NICK <newnick>
187
188 Change your nickname to <newnick>.">
189
190 <helpop key="quit" value="/QUIT [:<message>]
191
192 Quit from IRC and end your current session.">
193
194 <helpop key="version" value="/VERSION [<servername>]
195
196 Returns the server's version information.">
197
198 <helpop key="ping" value="/PING <servername> [:<servername>]
199
200 Ping a server. The server will answer with a PONG.">
201
202 <helpop key="pong" value="/PONG <servername>
203
204 Your client should send this to answer server PINGs. You
205 should not issue this command manually.">
206
207 <helpop key="admin" value="/ADMIN [<servername>]
208
209 Shows the administrative information for the given server.">
210
211 <helpop key="privmsg" value="/PRIVMSG <target>[,<target>]+ :<message>
212
213 Sends a message to a user or channel specified in <target>.">
214
215 <helpop key="notice" value="/NOTICE <target>[,<target>]+ :<message>
216
217 Sends a notice to a user or channel specified in <target>.">
218
219 <helpop key="join" value="/JOIN <channel>[,<channel>]+ [<key>[,<key>]+]
220
221 Joins one or more channels you provide the names for.">
222
223 <helpop key="names" value="/NAMES [<channel>[,<channel>]+]
224
225 Return a list of users on the channel(s) you provide.">
226
227 <helpop key="part" value="/PART <channel>[,<channel>]+ [:<reason>]
228
229 Leaves one or more channels you specify.">
230
231 <helpop key="kick" value="/KICK <channel> <nick>[,<nick>]+ [:<reason>]
232
233 Kicks a user from a channel you specify. You must be
234 at least a channel halfoperator to kick a user.">
235
236 <helpop key="mode" value="/MODE <target> [[(+|-)]<modes> [<mode-parameters>]]
237
238 Change or view modes of <target>.
239
240 /MODE <target> - Show modes of <target>.
241
242 /MODE <channel> <list mode char> - List bans, exceptions, etc. set on <channel>.
243
244 Sets the mode for a channel or a nickname specified in <target>.
245 A user may only set modes upon themselves, and may not set the
246 +o user mode, and a user may only change channel modes of
247 channels where they are at least a halfoperator.
248
249 For a list of all user and channel modes, enter /HELPOP UMODES or
250 /HELPOP CHMODES.">
251
252 <helpop key="topic" value="/TOPIC <channel> [:<topic>]
253
254 Sets or retrieves the channel topic. If a channel topic is
255 given in the command and either the channel is not +t, or
256 you are at least a halfoperator, the channel topic will be
257 changed to the new one you provide.">
258
259 <helpop key="who" value="/WHO <pattern> [<flags>][%[<fields>[,<querytype>]]] <pattern>
260
261 Looks up information about users matching the provided pattern. You can specify
262 a flag specific pattern, a channel name, user hostname, a user server name, a
263 user real name, or a user nickname. Matching users will only be included in the
264 WHO response if:
265
266  1) The specified pattern is an exact channel name that does not have the
267     private or secret channel modes set and the user does not have the invisible
268     user mode set.
269  2) The specified pattern is an exact nickname.
270  3) You share one or more common channels with the user.
271  4) The user does not have the invisible user mode set.
272  5) You are a server operator with the users/auspex privilege.
273
274 If you specify any fields the response returned will be a WHOX response rather
275 than a RFC 1459 WHO response.
276
277 Valid WHO Flags
278 ---------------
279
280 The following flags use <pattern> to match against the specified user data:
281
282  A     Show users who have an away message matching <pattern>.
283  a     Show users who have an account name matching <pattern>.
284  h     Show users who have a hostname matching <pattern>. If the 'x' modifier
285        is specified then this will match against the real hostname instead of
286        the display hostname.
287  i     Show users who have an IP address matching <pattern>.
288  m     Show users who have the modes listed in <pattern>. The pattern
289        should be in the same format as a mode change e.g. +ow-i (server
290        operators only).
291  n     Show users who have a nickname matching <pattern>.
292  p     Show users who are connected to a port in the <pattern> range (server
293        operators only).
294  r     Show users who have a real name matching <pattern>.
295  s     Show users who are on a server with a name matching <pattern>. If the 'x'
296        modifier is specified then this will match against the real server name
297        instead of the masked server name.
298  t     Show users who have connected in the last <pattern> seconds.
299  u     Show users who have an ident (username) matching <pattern>.
300
301 The following flags filter users by their status:
302
303  f     Only show users on remote (far) servers.
304  l     Only show users on the local server.
305  o     Only show server operators.
306
307 The following flags modify the command output:
308
309  x     Show sensitive data like real user hostnames and, when hideserver is
310        enabled, real server hostnames.
311
312 You may combine one flag from the first group and multiple from the others in
313 one WHO command.
314
315 Valid WHO Fields
316 ----------------
317
318  a     Include the user's account name in the response.
319  c     Include the first common channel name in the response.
320  d     Include the user's server distance from you in the response.
321  f     Include the user's away status, oper status, and highest channel prefix
322        in the response.
323  h     Include the user's hostname in the response. If the 'x' flag was
324        specified then this is the real host rather than the display host.
325  i     Include the user's IP address in the response.
326  l     Include the user's idle time in the response.
327  n     Include the user's nickname in the response.
328  o     Include the user's channel operator rank level in the response.
329  r     Include the user's real name in the response.
330  s     Include the user's server name in the response. If the 'x' flag was
331        specified then this is the real server name rather than the masked server
332        name.
333  t     Include the query type in the response.
334  u     Include the user's ident in the response.
335
336 ">
337
338 <helpop key="motd" value="/MOTD [<servername>]
339
340 Show the message of the day for <server>. Messages of the day often
341 contain important server rules and notices and should be read prior
342 to using a server.">
343
344 <helpop key="oper" value="/OPER <username> <password>
345
346 Attempts to authenticate as a server operator.
347
348 Both successful and unsuccessful oper attempts are
349 logged, and sent to online server operators.">
350
351 <helpop key="list" value="/LIST [<pattern>]
352
353 Creates a list of all existing channels matching the glob pattern
354 <pattern>, e.g. *chat* or bot*.">
355
356 <helpop key="lusers" value="/LUSERS
357
358 Shows a count of local and remote users, servers and channels.">
359
360 <helpop key="userhost" value="/USERHOST <nick> [<nick>]+
361
362 Returns the hostname and nickname of a user, and some other
363 miscellaneous information.">
364
365 <helpop key="away" value="/AWAY [:<message>]
366
367 If a message is given, marks you as being away, otherwise
368 removes your away status and previous message.">
369
370 <helpop key="ison" value="/ISON <nick> [<nick>]+
371
372 Returns a subset of the nicks you give, showing only those
373 that are currently online.">
374
375 <helpop key="invite" value="/INVITE [<nick> <channel> [<time>]]
376
377 Invites a user to a channel. If the channel is NOT +A, only
378 channel halfoperators or above can invite people. If +A is set,
379 anyone can invite people to the channel, as long as the person
380 doing the invite is a member of the channel they wish to invite
381 the user to.
382
383 Invited users may override bans, +k, and similar in addition to
384 +i, depending on configuration.
385
386 If a time is provided, the invite expires after that time and the user
387 can no longer use it to enter the channel. The time can be specified
388 in the form of 1y2w3d4h5m6s - meaning one year, two weeks, three days,
389 four hours, five minutes and six seconds. All fields in this format
390 are optional. Alternatively, the time may just be specified as a number
391 of seconds.
392
393 /INVITE without a parameter will list pending invitations for channels
394 you have been invited to.">
395
396 <helpop key="pass" value="/PASS <password>
397
398 This command is used by your client when setting up
399 your IRC session to submit a server password to the
400 server.
401
402 You should not use it during an established connection.">
403
404 <helpop key="whowas" value="/WHOWAS <nick>
405
406 Returns a list of times the user was seen recently on IRC along with
407 the time they were last seen and their server.">
408
409 <helpop key="links" value="/LINKS
410
411 Shows all linked servers.">
412
413 <helpop key="map" value="/MAP
414
415 Shows a graphical representation of all users and servers on the
416 network, and the links between them, as a tree from the perspective
417 of your server.">
418
419 <helpop key="whois" value="/WHOIS [<servername>] <nick>[,<nick>]+
420
421 Returns the WHOIS information of a user, their channels, hostname,
422 etc. If a servername is provided, then a whois is performed from
423 the server where the user is actually located rather than locally,
424 showing idle and signon times.">
425
426 <helpop key="time" value="/TIME [<servername>]
427
428 Returns the local time of the server, or remote time of another
429 server.">
430
431 <helpop key="info" value="/INFO [<servername>]
432
433 Returns information on the developers and supporters who made this
434 IRC server possible.">
435
436 <helpop key="setname" value="/SETNAME :<realname>
437
438 Sets your real name to the specified real name.">
439
440
441 <helpop key="coper" value="Oper Commands
442 -------------
443
444 ALLTIME        CBAN           CHECK          CHGHOST        CHGIDENT
445 CHGNAME        CLEARCHAN      CLOAK          CLONES         CONNECT
446 DIE            ELINE          FILTER         GLINE          GLOADMODULE
447 GLOBOPS        GRELOADMODULE  GUNLOADMODULE  KILL           KLINE
448 LOADMODULE     LOCKSERV       MODENOTICE     NICKLOCK       NICKUNLOCK
449 OJOIN          OPERMOTD       QLINE          RCONNECT       REHASH
450 RELOADMODULE   RESTART        RLINE          RSQUIT         SAJOIN
451 SAKICK         SAMODE         SANICK         SAPART         SAQUIT
452 SATOPIC        SETHOST        SETIDENT       SETIDLE        SHUN
453 SQUIT          SWHOIS         TLINE          UNLOADMODULE   UNLOCKSERV
454 USERIP         WALLOPS        ZLINE">
455
456 <helpop key="userip" value="/USERIP <nick> [<nick>]+
457
458 Returns the IP address and nickname of the given user(s).">
459
460 <helpop key="tline" value="/TLINE <mask>
461
462 This command returns the number of local and global clients matched,
463 and the percentage of clients matched, plus how they were matched
464 (by IP address or by hostname). Mask should be given as either
465 nick!user@host or user@IP (wildcards and CIDR blocks are accepted).">
466
467 <helpop key="lockserv" value="/LOCKSERV [:<message>]
468
469 Locks out all new connections notifying connecting users that the
470 service is temporarily closed and to try again later.">
471
472 <helpop key="unlockserv" value="/UNLOCKSERV
473
474 Opens the server up again for new connections.">
475
476 <helpop key="filter" value="/FILTER <pattern> [<action> <flags> [<duration>] :<reason>]
477
478 This command will add a global filter when more than one parameter is
479 given, for messages of the types specified by the flags, with the given
480 filter pattern, action, duration (when the action is 'gline', 'zline'
481 or 'shun'), and reason.
482
483 The filter will take effect when a message of any type specified by
484 the flags and matching the pattern is sent to the server, and
485 perform the specified action.
486
487 Valid FILTER Actions
488 --------------------
489
490 None    Does nothing
491 Warn    Lets the message through and informs +s server operators
492         of the message and all relevant info
493 Block   Blocks message and informs +s server operators of the blocked
494         message and all relevant info
495 Silent  Blocks message, but does not notify server operators
496 Kill    Kills the user
497 Gline   G-lines the user for the specified duration
498 Zline   Z-lines the user for the specified duration
499 Shun    Shuns the user for the specified duration (requires the shun module)
500
501 Valid FILTER Flags
502 ------------------
503
504 p    Block private and channel messages
505 n    Block private and channel notices
506 P    Block part messages
507 q    Block quit messages
508 o    Don't match against opers
509 c    Strip all formatting codes from the message before matching
510 *    Represents all of the above flags
511 -    Does nothing, a non-op for when you do not want to specify any
512      flags
513
514 The reason for the filter will be used as the reason for the action,
515 unless the action is 'none', and is sent to the user when their text is
516 blocked by 'block' and 'silent' actions.
517
518 A G-line, Z-line or shun duration may be specified in seconds, or in the
519 format 1y2w3d4h5m6s - meaning one year, two weeks, three days, 4 hours, 5
520 minutes and 6 seconds. All fields in this format are optional.
521
522 When only one parameter is provided (the filter pattern) the provided
523 filter will be removed. Note that if you remove a
524 configuration-defined filter, it will reappear at next rehash unless
525 it is also removed from the config file.">
526
527 <helpop key="ojoin" value="/OJOIN <channel>
528
529 Force joins you to the specified channel, and gives you +Y and any other
530 configuration-defined modes on it, preventing you from being kicked.
531 Depending on configuration, may announce that you have joined the
532 channel on official network business.">
533
534 <helpop key="clones" value="/CLONES <limit>
535
536 Retrieves a list of users with more clones than the specified
537 limit.">
538
539 <helpop key="check" value="/CHECK <nick>|<ipmask>|<hostmask>|<channel> [<servername>]
540
541 Allows opers to look up advanced information on nicknames, IP addresses,
542 hostmasks or channels, in a similar way to WHO but in more detail,
543 displaying most information the server has stored on the target,
544 including all metadata.
545
546 With the second parameter given, runs the command remotely on the
547 specified server, useful especially if used on a nickname that is
548 online on a remote server.">
549
550 <helpop key="alltime" value="/ALLTIME
551
552 Shows the date and time of all servers on the network.">
553
554 <helpop key="rconnect" value="/RCONNECT <remote-server-mask> <target-server-mask>
555
556 The server matching <remote-server-mask> will try to connect to the first
557 server in the config file matching <target-server-mask>.">
558
559 <helpop key="rsquit" value="/RSQUIT <target-server-mask> [:<reason>]
560
561 Causes a remote server matching <target-server-mask> to be disconnected from
562 the network.">
563
564 <helpop key="globops" value="/GLOBOPS :<message>
565
566 Sends a message to all users with the +g snomask.">
567
568 <helpop key="cban" value="/CBAN <channel> [<duration> [:<reason>]]
569
570 Sets or removes a global channel ban. You must specify all three parameters
571 to add a ban, and one parameter to remove a ban (just the channel).
572
573 The duration may be specified in seconds, or in the format
574 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
575 five minutes and six seconds. All fields in this format are optional.">
576
577 <helpop key="sajoin" value="/SAJOIN [<nick>] <channel>[,<channel>]+
578
579 Forces the user to join the channel(s).
580 If no nick is given, it joins the oper doing the /SAJOIN.">
581
582 <helpop key="sapart" value="/SAPART <nick> <channel>[,<channel>]+ [:<reason>]
583
584 Forces the user to part the channel(s), with an optional reason.">
585
586 <helpop key="samode" value="/SAMODE <target> (+|-)<modes> [<mode-parameters>]
587
588 Applies the given mode change to the channel or nick specified.">
589
590 <helpop key="sanick" value="/SANICK <nick> <newnick>
591
592 Changes the user's nick to the new nick.">
593
594 <helpop key="sakick" value="/SAKICK <channel> <nick> [:<reason>]
595
596 Kicks the given user from the specified channel, with an optional reason.">
597
598 <helpop key="satopic" value="/SATOPIC <channel> :<topic>
599
600 Applies the given topic to the specified channel.">
601
602 <helpop key="saquit" value="/SAQUIT <nick> :<reason>
603
604 Forces user to quit with the specified reason.">
605
606 <helpop key="setidle" value="/SETIDLE <duration>
607
608 Sets your idle time to the specified value.
609
610 The time can be specified in the form of 1y2w3d4h5m6s - meaning one year,
611 two weeks, three days, four hours, five minutes and six seconds.
612 All fields in this format are optional. Alternatively, the time may
613 just be specified as a number of seconds.">
614
615 <helpop key="sethost" value="/SETHOST <host>
616
617 Sets your host to the specified host.">
618
619 <helpop key="setident" value="/SETIDENT <ident>
620
621 Sets your ident to the specified ident.">
622
623 <helpop key="swhois" line="/SWHOIS <nick> :<swhois>
624
625 Sets the user's swhois field to the given swhois message.
626 This will be visible in their /WHOIS.
627
628 To remove this message again, use:
629 /SWHOIS <nick> :">
630
631 <helpop key="mkpasswd" value="/MKPASSWD <hashtype> <plaintext>
632
633 Encodes the plaintext to a hash of the given type and displays
634 the result.">
635
636 <helpop key="opermotd" value="/OPERMOTD [<servername>]
637
638 Displays the Oper MOTD.">
639
640 <helpop key="nicklock" value="/NICKLOCK <nick> <newnick>
641
642 Changes the user's nick to the new nick, and forces
643 it to remain as such for the remainder of the session.">
644
645 <helpop key="nickunlock" value="/NICKUNLOCK <nick>
646
647 Allows a previously locked user to change nicks again.">
648
649 <helpop key="chghost" value="/CHGHOST <nick> <host>
650
651 Changes the host of the user to the specified host.">
652
653 <helpop key="chgname" value="/CHGNAME <nick> :<realname>
654
655 Changes the real name of the user to the specified real name.">
656
657 <helpop key="chgident" value="/CHGIDENT <nick> <ident>
658
659 Changes the ident of the user to the specified ident.">
660
661 <helpop key="shun" value="/SHUN <nick!user@host> [<duration> :<reason>]
662
663 Sets or removes a shun (global server-side ignore) on a nick!user@host mask.
664 You must specify all three parameters to add a shun, and one parameter
665 to remove a shun (just the nick!user@host).
666
667 The duration may be specified in seconds, or in the format
668 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
669 five minutes and six seconds. All fields in this format are optional.">
670
671 <helpop key="die" value="/DIE <servername>
672
673 This command shuts down the local server. A single parameter is
674 required, which must match the name of the local server.">
675
676 <helpop key="restart" value="/RESTART <servername>
677
678 This command restarts the local server. A single parameter is
679 required, which must match the name of the local server.">
680
681 <helpop key="commands" value="/COMMANDS
682
683 Shows all currently available commands.">
684
685 <helpop key="kill" value="/KILL <nick>[,<nick>]+ :<reason>
686
687 This command will disconnect a user from IRC with the given reason.">
688
689 <helpop key="rehash" value="/REHASH [<servermask>]
690
691 This command will cause the server configuration file to be reread and
692 values reinitialized for all servers matching the server mask, or the
693 local server if one is not specified.">
694
695 <helpop key="connect" value="/CONNECT <servermask>
696
697 Add a connection to the server matching the given server mask. You must
698 have configured the server for linking in your configuration file
699 before trying to link them.">
700
701 <helpop key="squit" value="/SQUIT <servermask>
702
703 Disconnects the server matching the given server mask from this server.">
704
705 <helpop key="modules" value="/MODULES [<servername>]
706
707 Lists currently loaded modules, their memory offsets, version numbers,
708 and flags. If you are not an operator, you will see reduced detail.">
709
710 <helpop key="loadmodule" value="/LOADMODULE <modulename>
711
712 Loads the specified module into the local server.">
713
714 <helpop key="unloadmodule" value="/UNLOADMODULE <modulename>
715
716 Unloads a module from the local server.">
717
718 <helpop key="reloadmodule" value="/RELOADMODULE <modulename>
719
720 Unloads and reloads a module on the local server.">
721
722 <helpop key="gloadmodule" value="/GLOADMODULE <modulename> [<servermask>]
723
724 Loads the specified module on all linked servers.">
725
726 <helpop key="gunloadmodule" value="/GUNLOADMODULE <modulename> [<servermask>]
727
728 Unloads a module from all linked servers.">
729
730 <helpop key="greloadmodule" value="/GRELOADMODULE <modulename> [<servermask>]
731
732 Unloads and reloads a module on all linked servers.">
733
734 <helpop key="kline" value="/KLINE <user@host> [<duration> :<reason>]
735
736 Sets or removes a K-line (local user@host based ban) on a user@host mask.
737 You must specify all three parameters to add a ban, and one parameter
738 to remove a ban (just the user@host).
739
740 The duration may be specified in seconds, or in the format
741 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
742 five minutes and six seconds. All fields in this format are optional.">
743
744 <helpop key="zline" value="/ZLINE <ipmask> [<duration> :<reason>]
745
746 Sets or removes a Z-line (global IP based ban) on an IP mask.
747 You must specify all three parameters to add a ban, and one parameter
748 to remove a ban (just the ipmask).
749
750 The duration may be specified in seconds, or in the format
751 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
752 five minutes and six seconds. All fields in this format are optional.">
753
754 <helpop key="qline" value="/QLINE <nickmask> [<duration> :<reason>]
755
756 Sets or removes a Q-line (global nick based ban) on a nick mask.
757 You must specify all three parameters to add a ban, and one parameter
758 to remove a ban (just the nickmask).
759
760 The duration may be specified in seconds, or in the format
761 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
762 five minutes and six seconds. All fields in this format are optional.">
763
764 <helpop key="gline" value="/GLINE <user@host> [<duration> :<reason>]
765
766 Sets or removes a G-line (global user@host based ban) on a user@host mask.
767 You must specify all three parameters to add a ban, and one
768 parameter to remove a ban (just the user@host).
769
770 The duration may be specified in seconds, or in the format
771 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
772 five minutes and six seconds. All fields in this format are optional.">
773
774 <helpop key="eline" value="/ELINE <user@host> [<duration> :<reason>]
775
776 Sets or removes a E-line (global user@host ban exception) on a user@host mask.
777 You must specify at least 3 parameters to add an exception, and one
778 parameter to remove an exception (just the user@host).
779
780 The duration may be specified in seconds, or in the format
781 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
782 five minutes and six seconds. All fields in this format are optional.
783
784 This command has a few important limitations. Bans on *@<ip> can only
785 be negated by an E-line on *@<ip>, bans on *@<host> can be negated by
786 E-lines on *@<ip>, or *@<host>, and bans on <ident>@* or <ident>@<host>
787 can be negated by any E-line that matches.">
788
789 <helpop key="wallops" value="/WALLOPS :<message>
790
791 Sends a message to all +w users.">
792
793 <helpop key="rline" value="/RLINE <regex> [<duration> :<reason>]
794
795 Sets or removes an R-line (global regex ban) on a n!u@h\srealname mask. You
796 must specify all three parameters to add an R-line, and one parameter
797 to remove an R-line (just the regex).
798
799 The duration may be specified in seconds, or in the format
800 1y2w3d4h5m6s - meaning one year, two weeks, three days, four hours,
801 five minutes and six seconds. All fields in this format are optional.">
802
803 <helpop key="clearchan" value="/CLEARCHAN <channel> [KILL|KICK|G|Z] [:<reason>]
804
805 Quits or kicks all non-opers from a channel, optionally G/Z-lines them.
806 Useful for quickly nuking bot channels.
807
808 The default method, KILL, simply disconnects the victims from the server,
809 while methods G and Z also add G/Z-lines for all the targets.
810
811 When used, the victims won't see each other getting kicked or quitting.">
812
813 <helpop key="modenotice" value="/MODENOTICE <modeletters> :<message>
814
815 Sends a notice to all users who have the given mode(s) set.
816 If multiple mode letters are given, the notice is only sent to users
817 who have all of them set.">
818
819 <helpop key="cloak" value="/CLOAK <host>
820
821 Generate the cloak of a host or IP. This is useful for example when
822 trying to get the cloak of a user from /WHOWAS and they were not
823 using their cloak when they quit.">
824
825 <helpop key="umodes" value="User Modes
826 ----------
827
828  c            Blocks private messages and notices from users who do
829               not share a common channel with you (requires the
830               commonchans module).
831  d            Deaf mode. User will not receive any messages or notices
832               from channels they are in (requires the deaf module).
833  g            In combination with /ACCEPT, provides for server-side
834               ignore (requires the callerid module).
835  h            Marks as 'available for help' in WHOIS (server operators
836               only, requires the helpop module).
837  i            Makes invisible to /WHO if the user using /WHO is not in
838               a common channel.
839  k            Prevents the user from being kicked from channels, or
840               having op modes removed from them (services only,
841               requires the servprotect module).
842  o            Marks as a server operator.
843  s <mask>     Receives server notices specified by <mask>
844               (server operators only).
845  r            Marks as a having a registered nickname
846               (requires the services account module).
847  w            Receives wallops messages.
848  x            Gives a cloaked hostname (requires the cloaking module).
849  z            Only allow private messages from SSL users (requires the
850               sslmode module).
851  B            Marks as a bot (requires the botmode module).
852  D            Privdeaf mode. User will not receive any private messages
853               or notices from users (requires the deaf module).
854  G            Censors messages sent to the user based on filters
855               configured for the network (requires the censor module).
856  H            Hides an oper's oper status from WHOIS (requires the
857               hideoper module).
858  I            Hides a user's entire channel list in WHOIS from
859               non-server operators (requires the hidechans module).
860  L            Stops redirections done by the redirect module (requires
861               the redirect module).
862  R            Blocks private messages from unregistered users
863               (requires the services account module).
864  S            Strips formatting codes out of private messages
865               to the user (requires the stripcolor module).
866  W            Receives notifications when a user uses WHOIS on them
867               (server operators only, requires the showwhois module).">
868
869 <helpop key="chmodes" value="Channel Modes
870 -------------
871
872  v <nickname>       Gives voice to <nickname>, allowing them to speak
873                     while the channel is +m.
874  h <nickname>       Gives halfop status to <nickname> (requires the
875                     customprefix module).
876  o <nickname>       Gives op status to <nickname>.
877  a <nickname>       Gives protected status to <nickname>, preventing
878                     them from being kicked (+q only, requires the
879                     customprefix module).
880  q <nickname>       Gives owner status to <nickname>, preventing them
881                     from being kicked (Services or +q only, requires
882                     the customprefix module).
883
884  b <hostmask>       Bans <hostmask> from the channel.
885  e <hostmask>       Excepts <hostmask> from bans (requires the
886                     banexception module).
887  I <hostmask>       Excepts <hostmask> from +i, allowing matching
888                     users to join while the channel is invite-only
889                     (requires the inviteexception module).
890
891  c                  Blocks messages that contain formatting codes
892                     (requires the blockcolor module).
893  d <time>           Blocks messages to a channel from new users
894                     until they have been in the channel for <time>
895                     seconds (requires the delaymsg module).
896  f [*]<lines>:<sec> Kicks on text flood equal to or above the
897                     specified rate. With *, the user is banned
898                     (requires the messageflood module).
899  g <mask>           Blocks messages matching the given glob mask
900                     (requires the chanfilter module).
901  i                  Makes the channel invite-only.
902                     Users can only join if an operator
903                     uses /INVITE to invite them.
904  j <joins>:<sec>    Limits joins to the specified rate (requires
905                     the joinflood module).
906  k <key>            Set the channel key (password) to <key>.
907  l <limit>          Set the maximum allowed users to <limit>.
908  m                  Enable moderation. Only users with +v, +h, or +o
909                     can speak.
910  n                  Blocks users who are not members of the channel
911                     from messaging it.
912  p                  Make channel private, hiding it in users' whoises
913                     and replacing it with * in /LIST.
914  r                  Marks the channel as registered with Services
915                     (requires the services account module).
916  s                  Make channel secret, hiding it in users' whoises
917                     and /LIST.
918  t                  Prevents users without +h or +o from changing the
919                     topic.
920  u                  Makes the channel an auditorium; normal users only
921                     see themselves or themselves and the operators,
922                     while operators see all the users (requires the
923                     auditorium module).
924  w <flag>:<banmask> Adds basic channel access controls of <flag> to
925                     <banmask>, via the +w listmode.
926                     For example, +w o:R:Brain will op anyone identified
927                     to the account 'Brain' on join.
928                     (requires the autoop module)
929  z                  Blocks non-SSL clients from joining the channel
930                     (requires the sslmodes module).
931
932  A                  Allows anyone to invite users to the channel
933                     (normally only chanops can invite, requires
934                     the allowinvite module).
935  B                  Blocks messages with too many capital letters,
936                     as determined by the network configuration
937                     (requires the blockcaps module).
938  C                  Blocks any CTCPs to the channel (requires the
939                     noctcp module).
940  D                  Delays join messages from users until they message
941                     the channel (requires the delayjoin module).
942  E [~|*]<lines>:<sec>[:<difference>][:<backlog>]    Allows blocking of
943                     similar messages (requires the repeat module).
944                     Kicks as default, blocks with ~ and bans with *
945                     The last two parameters are optional.
946  F <changes>:<sec>  Blocks nick changes when they equal or exceed the
947                     specified rate (requires the nickflood module).
948  G                  Censors messages to the channel based on the
949                     network configuration (requires the censor module).
950  H <num>:<duration> Displays the last <num> lines of chat to joining
951                     users. <duration> is the maximum time to keep
952                     lines in the history buffer (requires the
953                     chanhistory module).
954  J <seconds>        Prevents rejoin after kick for the specified
955                     number of seconds. This prevents auto-rejoin
956                     (requires the kicknorejoin module).
957  K                  Blocks /KNOCK on the channel (requires the
958                     knock module).
959  L <channel>        If the channel reaches its limit set by +l,
960                     redirect users to <channel> (requires the
961                     redirect module).
962  M                  Blocks unregistered users from speaking (requires
963                     the services account module).
964  N                  Prevents users on the channel from changing nick
965                     (requires the nonicks module).
966  O                  Channel is server operators only (can only be set
967                     by server operators, requires the operchans module).
968  P                  Makes the channel permanent; Bans, invites, the
969                     topic, modes, and such will not be lost when it
970                     empties (can only be set by server operators,
971                     requires the permchannels module).
972  Q                  Only U-lined servers and their users can kick
973                     (requires the nokicks module).
974  R                  Blocks unregistered users from joining (requires
975                     the services account module).
976  S                  Strips formatting codes from messages to the
977                     channel (requires the stripcolor module).
978  T                  Blocks /NOTICEs to the channel from users who are
979                     not at least halfop (requires the nonotice module).
980  X <type>:<status>  Makes users of <status> or higher exempt to the
981                     specified restriction <type>. For example: flood:h
982                     (requires the exemptchanops module).
983  Possible restriction types to exempt with +X are:
984
985  auditorium-see      Permission required to see the full user list of
986                      a +u channel (requires the auditorium module).
987  auditorium-vis      Permission required to be visible in a +u channel
988                      (requires the auditorium module).
989  blockcaps           Channel mode +B
990  blockcolor          Channel mode +c
991  censor              Channel mode +G
992  filter              Channel mode +g
993  flood               Channel mode +f
994  nickflood           Channel mode +F
995  noctcp              Channel mode +C
996  nonick              Channel mode +N
997  nonotice            Channel mode +T
998  regmoderated        Channel mode +M
999  stripcolor          Channel mode +S
1000  topiclock           Channel mode +t
1001
1002 -------------
1003 NOTE: A large number of these modes are dependent upon server-side modules
1004 being loaded by a server/network administrator. The actual modes available
1005 on your network may be very different to this list. Please consult your
1006 help channel if you have any questions.">
1007
1008 <helpop key="stats" value="/STATS <symbol> [<servername>]
1009
1010 Shows various server statistics. Depending on configuration, some
1011 symbols may be only available to opers.
1012
1013 Valid symbols are:
1014
1015 e  Show E-lines (global user@host ban exceptions)
1016 g  Show G-lines (global user@host bans)
1017 k  Show K-lines (local user@host bans)
1018 q  Show Q-lines (global nick bans)
1019 R  Show R-lines (global regular expression bans)
1020 Z  Show Z-lines (global IP mask bans)
1021
1022 s  Show filters (global)
1023 C  Show channel bans (global)
1024 H  Show shuns (global)
1025
1026 c  Show link blocks
1027 d  Show configured DNSBLs and related statistics
1028 m  Show command statistics, number of times commands have been used
1029 o  Show a list of all valid oper usernames and hostmasks
1030 p  Show open client ports, and the port type (ssl, plaintext, etc)
1031 u  Show server uptime
1032 z  Show memory usage statistics
1033 i  Show connect class permissions
1034 l  Show all client connections with information (sendq, commands, bytes, time connected)
1035 L  Show all client connections with information and IP address
1036 P  Show online opers and their idle times
1037 T  Show bandwidth/socket statistics
1038 U  Show U-lined servers
1039 Y  Show connection classes
1040 O  Show opertypes and the allowed user and channel modes it can set
1041 E  Show socket engine events
1042 S  Show currently held registered nicknames
1043 G  Show how many local users are connected from each country
1044
1045 Note that all /STATS use is broadcast to online server operators.">
1046
1047 <helpop key="snomasks" value="Server Notice Masks
1048
1049  a      Allows receipt of local announcement messages.
1050  A      Allows receipt of remote announcement messages.
1051  c      Allows receipt of local connect messages.
1052  C      Allows receipt of remote connect messages.
1053  d      Allows receipt of local DNSBL messages (requires the dnsbl module).
1054  D      Allows receipt of remote DNSBL messages (requires the dnsbl module).
1055  f      Allows receipt of local filter messages (requires the filter module).
1056  F      Allows receipt of remote filter messages (requires the filter module).
1057  g      Allows receipt of globops (requires the globops module).
1058  j      Allows receipt of channel creation notices (requires the chancreate module).
1059  J      Allows receipt of remote channel creation notices (requires the chancreate module).
1060  k      Allows receipt of local kill messages.
1061  K      Allows receipt of remote kill messages.
1062  l      Allows receipt of local linking related messages.
1063  L      Allows receipt of remote linking related messages.
1064  n      Allows receipt of local nickname changes (requires the seenicks module).
1065  N      Allows receipt of remote nickname changes (requires the seenicks modules).
1066  o      Allows receipt of oper-up, oper-down, and oper-failure messages.
1067  O      Allows receipt of remote oper-up, oper-down, and oper-failure messages.
1068  q      Allows receipt of local quit messages.
1069  Q      Allows receipt of remote quit messages.
1070  r      Allows receipt of local oper commands (requires the operlog module).
1071  R      Allows receipt of remote oper commands (requires the operlog module).
1072  t      Allows receipt of attempts to use /STATS (local and remote).
1073  v      Allows receipt of oper override notices (requires the override module).
1074  x      Allows receipt of local X-line notices (G/Z/Q/K/E/R/SHUN/CBan).
1075  X      Allows receipt of remote X-line notices (G/Z/Q/K/E/R/SHUN/CBan).">
1076
1077 <helpop key="extbans" value="Extended Bans
1078 ----------
1079
1080 Extbans are split into two types; matching extbans, which match on
1081 users in additional ways, and acting extbans, which restrict users
1082 in different ways to a standard ban.
1083
1084 To use an extban, simply set +b <ban> or +e <ban> with it as the ban,
1085 instead of a normal nick!user@host mask, to ban or exempt matching
1086 users. Ban exceptions on acting extbans exempt that user from matching
1087 an extban of that type, and from any channel mode corresponding to the
1088 restriction. Matching extbans may also be used for invite exceptions by
1089 setting +I <extban>.
1090
1091 Matching extbans:
1092
1093  a:<mask>      Matches user with both a matching banmask and real name,
1094                where <mask> is in the format nick!user@host+realname
1095                (requires gecosban module).
1096  j:<channel>   Matches anyone in the given channel. Does not support
1097                wildcards (requires the channelban module).
1098  n:<class>     Matches users in a matching connect class (requires
1099                the classban module).
1100  r:<realname>  Matches users with a matching real name (requires the
1101                gecosban module).
1102  s:<server>    Matches users on a matching server (requires the
1103                serverban module).
1104  z:<certfp>    Matches users having the given SSL certificate
1105                fingerprint (requires the sslmodes module).
1106  O:<opertype>  Matches server operators of a matching type, mostly
1107                useful as an invite exception (requires the
1108                operchans module).
1109  R:<account>   Matches users logged into a matching account (requires
1110                the services account module).
1111  U:<banmask>   Matches unregistered users matching the given banmask.
1112                (requires the services account module).
1113
1114 Acting extbans:
1115
1116  c:<banmask>   Blocks any messages that contain formatting codes from
1117                matching users (requires the blockcolor module).
1118  m:<banmask>   Blocks messages from matching users (requires the muteban
1119                module). Users with +v or above are not affected.
1120  p:<banmask>   Blocks part messages from matching users (requires
1121                the nopartmsg module).
1122  A:<banmask>   Blocks invites by matching users even when +A is set
1123                (requires the allowinvite module).
1124  B:<banmask>   Blocks all capital or nearly all capital messages from
1125                matching users (requires the blockcaps module).
1126  C:<banmask>   Blocks CTCPs from matching users (requires the noctcp
1127                module).
1128  N:<banmask>   Blocks nick changes from matching users (requires
1129                the nonicks module).
1130  Q:<banmask>   Blocks kicks by matching users (requires the nokicks
1131                module).
1132  S:<banmask>   Strips formatting codes from messages from matching
1133                users (requires the stripcolor module).
1134  T:<banmask>   Blocks notices from matching users (requires the
1135                nonotice module).
1136
1137 A ban given to an Acting extban may either be a nick!user@host mask
1138 (unless stated otherwise), matched against users as for a normal ban,
1139 or a Matching extban.
1140
1141 There is an additional special type of extended ban, a redirect ban:
1142
1143  Redirect      n!u@h#channel will redirect the banned user to #channel
1144                when they try to join (requires the banredirect module).">