diff options
| author | 2024-06-30 22:09:21 +0100 | |
|---|---|---|
| committer | 2024-06-30 22:09:21 +0100 | |
| commit | 2b6dcdee3f61eaa51e61880e0c27a77c700ff775 (patch) | |
| tree | 7093cc7b4d8df91faac45c958f90f85aff70f4dd | |
| parent | Use the password from the class instead of the config in passforward. (diff) | |
Fix various docs issues.
Ref: #2099.
| -rw-r--r-- | docs/conf/help.example.conf | 6 | ||||
| -rw-r--r-- | docs/conf/inspircd.example.conf | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/docs/conf/help.example.conf b/docs/conf/help.example.conf index b3ca6fd35..d3415ccbc 100644 --- a/docs/conf/help.example.conf +++ b/docs/conf/help.example.conf @@ -929,9 +929,10 @@ using their cloak when they quit. A Allows anyone to invite users to the channel (normally only chanops can invite, requires the allowinvite module). - B Blocks messages with too many capital letters, + B {ban|block|mute|kick|kickban}:<minlen>:<percent> + Blocks messages with too many capital letters, as determined by the network configuration - (requires the blockcaps module). + (requires the anticaps module). C Blocks any CTCPs to the channel (requires the noctcp module). D Delays join messages from users until they message @@ -982,7 +983,6 @@ using their cloak when they quit. a +u channel (requires the auditorium module). auditorium-vis Permission required to be visible in a +u channel (requires the auditorium module). - blockcaps Channel mode +B blockcolor Channel mode +c filter Channel mode +g flood Channel mode +f diff --git a/docs/conf/inspircd.example.conf b/docs/conf/inspircd.example.conf index 4e49c960e..241eed977 100644 --- a/docs/conf/inspircd.example.conf +++ b/docs/conf/inspircd.example.conf @@ -124,9 +124,9 @@ # IP's on the box if this is not defined. address="" - # port: Port for users or servers to be able to connect to. - # you can select multiple ports by separating them - # with a - character like the example below. + # port: Port for users or servers to be able to connect to. You can bind + # to multiple ports by separating them with commas and to a range with + # a dash (e.g. 6660-6667,7000). port="6697" # type: Type of bind block this is. It can either be clients or @@ -169,8 +169,9 @@ # Listener that binds on a UNIX endpoint (not supported on Windows): #<bind - # path: The location to store the UNIX socket - #path="/tmp/inspircd.sock" + # path: The location to store the UNIX socket. Relative to the data + # directly if not an absolute path. + #path="inspircd.sock" # type: Type of bind block this is. It can either be clients or # servers. Whichever you select will be the only type able to connect |
