]> arthur.barton.de Git - ngircd-alex.git/blob - doc/Modes.txt
Update links to "Arthur" to use the HTTP protocol
[ngircd-alex.git] / doc / Modes.txt
1
2                      ngIRCd - Next Generation IRC Server
3                            http://ngircd.barton.de/
4
5                (c)2001-2014 Alexander Barton and Contributors.
6                ngIRCd is free software and published under the
7                    terms of the GNU General Public License.
8
9                                -- Modes.txt --
10
11
12 This document lists the different user modes, channel modes, and channel
13 user modes that ngIRCd supports.
14
15
16 I. User Modes
17 ~~~~~~~~~~~~~
18
19 User modes are attributes a user has in the network, regardless of the
20 channels he is using at the moment.
21
22   mode  since   description
23
24   a     0.3.0   User is away.
25   b     20      User blocks private messages and notices.
26   B     20      User is flagged as a "bot".
27   c     17      IRC operator wants to receive connect/disconnect NOTICEs.
28   C     19      Only users that share a channel are allowed to send messages.
29   F     22      Relaxed flood protection (only settable by IRC Operators).
30   i     0.0.1   User is "invisible".
31   o     0.0.1   User is IRC operator.
32   q     20      User is protected, can not be kicked from a channel.
33   r     0.0.1   User is restricted.
34   R (1) 19      User is registered (e.g. by NickServ).
35   s     0.4.0   User wants to receive server notices.
36   w     0.11.0  User wants to receive WALLOPS messages.
37   x     17      Hostname of this user is "cloaked".
38
39 II. Channel Modes
40 ~~~~~~~~~~~~~~~~~
41
42 Channel modes are attributes of specific channels which are valid for all
43 users joined (or trying to join) to this channel. Some modes add and remove
44 users to lists (e.g. "invite list", "ban list"), others have parameters
45 (like "channel key"), most are simple flags (like "moderated").
46
47   mode  since   description
48
49   b     0.5.0   Add/remove a host mask to the ban list.
50   e     19      Add/remove a host mask to the exception list.
51   i     0.5.0   Channel is "invite only".
52   I     0.5.0   Add/remove a host mask to the invite list.
53   k     0.6.0   Channel has a "key" (a password).
54   l     0.6.0   Channel has a user limit.
55   m     0.3.0   Channel is moderated, only "voiced" users can send messages.
56   M     20      Only registered users (and IRC Ops) can send messages.
57   n     0.3.0   Channel doesn't allow messages of users not being members.
58   O     18      Only IRC operators are allowed to join this channel.
59   P     0.5.0   Channel is "persistent".
60   Q     20      Nobody can be kicked from the channel.
61   r (1) 19      Channel is "registered" (e.g. by ChanServ).
62   R     19      Only registered users are allowed to join this channel.
63   s     0.9.0   Channel is "secret".
64   t     0.3.0   Only ChanOps are allowed to modify the channel topic.
65   V     20      Channel doesn't allow invites.
66   z     16      Only users connected via SSL are allowed to join the channel.
67
68 III. Channel User Modes
69 ~~~~~~~~~~~~~~~~~~~~~~~
70
71 Channel user modes are attributes that a particular user has in a specific
72 channel of which he is a member.
73
74   mode  since   description
75
76   q     20      User is channel owner can only be set by a service, other
77                 owner and irc op. Can promote other users to q, a, o, h, v.
78   a     20      User is channel admin and can promote other users to v, h, o
79   o     0.2.0   User is channel operator and can op/kick/... other members.
80   h     20      User is half op and can set channel modes imntvIbek and kick
81                 voiced and normal users.
82   v     0.2.0   User is "voiced" and can speak even if channel is moderated.
83
84
85 Notes
86 ~~~~~
87
88 (1) This mode is not set by ngIRCd itself but by services. ngIRCd handles
89     the mode transparently and possibly adjusts its behaviour.