mpp-server-dev2/config/users.yml

38 lines
1.3 KiB
YAML
Raw Normal View History

2024-07-23 11:54:36 +02:00
# The default username for new users.
2023-10-25 06:04:56 +02:00
defaultName: Anonymous
2024-07-23 11:54:36 +02:00
# The default user flags for new users.
2023-09-09 07:35:56 +02:00
defaultFlags:
volume: 100
2024-07-23 11:54:36 +02:00
# Whether or not to allow users to change their color.
# Brandon's server has this set to false, but multiple users have reported it to be on before 2016.
2023-09-11 00:04:54 +02:00
enableColorChanging: false
2024-07-23 11:54:36 +02:00
# Allows custom data inside note messages.
# This was in the original server, but not in MPP.net's server.
# This only exists for backwards compatibility with scripts like nagalun's drarwing script.
2023-09-12 07:55:15 +02:00
enableCustomNoteData: true
2024-07-23 11:54:36 +02:00
# This is the user data that the server will use to send admin chat messages with.
adminParticipant:
_id: "0"
name: mpp
color: "#fff"
id: "0"
2024-07-23 11:54:36 +02:00
# Allows admins to evaluate code through the "eval" message.
# This is a security risk, so only enable this if you trust your admins.
enableAdminEval: true
2024-07-23 11:54:36 +02:00
2024-07-23 20:45:52 +02:00
# The token validation scheme. Valid values are "none", "jwt" and "uuid".
2024-07-23 11:54:36 +02:00
# This server will still validate existing tokens generated with other schemes if not set to "none".
tokenAuth: none
# The browser challenge scheme. Valid values are "none", "obf" and "basic".
# This is to change what is sent in the "b" message.
# "none" will disable the browser challenge,
# "obf" will sent an obfuscated function to the client,
# and "basic" will just send a simple function that expects a boolean.
2024-07-30 13:46:56 +02:00
browserChallenge: none