Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- max_bandwidth = 48000;
- welcometext = "Mumble Perso !";
- certificate = "/etc/umurmur/cert.crt";
- private_key = "/etc/umurmur/key.key";
- ca_path = "/path/to/ca/certificates/"; # Location of CA certificate. Relevant for OpenSSL only.
- password = "omg";
- admin_password = "1369"; # Set to enable admin functionality.
- ban_length = 0; # Length in seconds for a ban. Default is 0. 0 = forever.
- enable_ban = true; # Default is false
- banfile = "/var/local/umurmur/var/banfile.txt"; # File to save bans to. Default is to not save bans to file.
- sync_banfile = true; # Keep banfile synced. Default is false, which means it is saved to at shutdown only.
- allow_textmessage = true; # Default is true
- opus_threshold = 100; # Required percentage of users that support Opus codec for it to be chosen
- max_users = 20;
- # bindport = 64738;
- # bindaddr = "192.168.1.1";
- # bindport6 = 64738;
- # bindaddr6 = "fde4:8dba:82e1::/48";
- # username and groupname for privilege dropping.
- # Will attempt to switch user if set.
- # username = "";
- # If groupname not set the user's default login group will be used
- # groupname = "";
- # Log to file option. Default is logging to syslog.
- # umurmurd will close and reopen the logfile if SIGHUP is received.
- # logfile = "/var/log/umurmurd.log";
- # Channel tree definition:
- # Root channel must always be defined first.
- # If a channel has a parent, the parent must be defined before the child channel(s).
- channels = ( {
- name = "Root";
- parent = "";
- description = "No entrance !";
- noenter = true;
- },
- {
- name = "Bazar de Freljord";
- parent = "Root";
- description = "Ici, on cause !";
- },
- {
- name = "In Game";
- parent = "Root";
- description = "LoL, encore et toujours..";
- },
- {
- name = "Red team";
- parent = "In Game";
- description = "Red team channel";
- # password = "redpw";
- },
- {
- name = "Blue team";
- parent = "In Game";
- description = "Blue team channel";
- # password = "bluepw";
- },
- {
- name = "Away";
- parent = "Root";
- description = "Pour les pros de l'afk.. Ouai ouai Majesty..";
- silent = true;
- position = -1; # Will appear before 'lobby' channel in the client's channel tree
- },
- {
- name = "5min";
- parent = "Away";
- description = "Ceci n'est pas un salon longue durée..";
- silent = true;
- },
- {
- name = "Manger";
- parent = "Away";
- description = "Bon app'";
- silent = true;
- },
- {
- name = "zZzZz";
- parent = "Away";
- description = "a.k.a. Majes'Room";
- silent = true;
- },
- {
- name = "Admin";
- parent = "Root";
- description = "Réservé";
- password = "Password123$";
- }
- );
- # Channel links configuration.
- channel_links = ( {
- source = "Bazar de Freljord";
- destination = "Red team";
- },
- {
- source = "Bazar de Freljord";
- destination = "Blue team";
- },
- {
- source = "Red team";
- destination = "Bazar de Freljord";
- },
- {
- source = "Blue team";
- destination = "Bazar de Freljord";
- }
- );
- # The channel in which users will appear in when connecting.
- # Note that default channel can't have 'noenter = true' or password set
- default_channel = "Bazar de Freljord";
Advertisement
Add Comment
Please, Sign In to add comment