Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-07-22 09:11:28 +0300
committerRobert Adam <dev@robert-adam.de>2022-07-22 09:13:37 +0300
commit20155f2269f123d8e6e18f1d86bffee6fa1d1afd (patch)
tree7ac8b8956d7060267d521cc0c7cd14687762aba2
parent93c13bdeea15c92f4590832b6bfd11c7dcfc86fa (diff)
DOCS: Document missing option in murmur.ini
The example murmur.ini file was missing a few options which were added by this commit. Fixes #5732
-rw-r--r--scripts/murmur.ini35
1 files changed, 28 insertions, 7 deletions
diff --git a/scripts/murmur.ini b/scripts/murmur.ini
index 44b1af0ee..07f024a1f 100644
--- a/scripts/murmur.ini
+++ b/scripts/murmur.ini
@@ -149,6 +149,14 @@ users=100
messageburst=5
messagelimit=1
+; Similar to messagelimit and messageburst, but these options apply specifically
+; to "plugin-messages". That is messages that Mumble plugins send from client
+; to client. The rate-limit collectively applies to all plugins active on a given
+; client. That means if plugin A exhausts this limit and plugin B then attempts
+; to send another message, the message from plugin B will be rate-limited.
+; pluginmessagelimit=1
+; pluginmessageburst=5
+
; Respond to UDP ping packets.
;
; Setting to true exposes the current user count, the maximum user count, and
@@ -238,7 +246,7 @@ allowping=true
; adjust the registerName variable.
; See http://developer.apple.com/networking/bonjour/index.html for more information
; about bonjour.
-;bonjour=True
+;bonjour=true
; If you have a proper SSL certificate, you can provide the filenames here.
; Otherwise, Murmur will create its own certificate automatically.
@@ -304,11 +312,11 @@ allowping=true
; If this options is enabled, only clients which have a certificate are allowed
; to connect.
-;certrequired=False
+;certrequired=false
; If enabled, clients are sent information about the servers version and operating
; system.
-;sendversion=True
+;sendversion=true
; You can set a recommended minimum version for your server, and clients will
; be notified in their log when they connect if their client does not meet the
@@ -345,12 +353,12 @@ allowping=true
; This sets password hash storage to legacy mode (1.2.4 and before)
; (Note that setting this to true is insecure and should not be used unless absolutely necessary)
-;legacyPasswordHash=false
+;legacypasswordhash=false
; By default a strong amount of PBKDF2 iterations are chosen automatically. If >0 this setting
; overrides the automatic benchmark and forces a specific number of iterations.
; (Note that you should only change this value if you know what you are doing)
-;kdfIterations=-1
+;kdfiterations=-1
; In order to prevent misconfigured, impolite or malicious clients from
; affecting the low-latency of other users, Murmur has a rudimentary global-ban
@@ -368,12 +376,12 @@ allowping=true
; settings out will cause Murmur to use the defaults:
;
; To avoid autobanning successful connection attempts from the same IP address,
-; set autobanSuccessfulConnections=False.
+; set autobanSuccessfulConnections=false.
;
;autobanAttempts=10
;autobanTimeframe=120
;autobanTime=300
-;autobanSuccessfulConnections=True
+;autobanSuccessfulConnections=true
; Enables logging of group changes. This means that every time a group in a
; channel changes, the server will log all groups and their members from before
@@ -397,6 +405,19 @@ allowping=true
;
; allowRecording=true
+; The amount of allowed listener proxies in a single channel. It defaults to -1
+; meaning that there is no limit. Set to 0 to disable Channel Listeners altogether.
+; This option has been introduced with 1.4.0.
+; listenersperchannel=5
+
+; The amount of listener proxies a single user may have. It defaults to -1 meaning
+; that there is no limit. Set to 0 to disable Channel Listeners altogether.
+; This option has been introduced with 1.4.0.
+; listenersperuser=2
+
+
+; forceExternalAuth=false
+
; You can configure any of the configuration options for Ice here. We recommend
; leave the defaults as they are.
; Please note that this section has to be last in the configuration file.