Modes.txt 3.5 KB

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