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