Guest User

Untitled

a guest
Aug 28th, 2014
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. max_bandwidth = 48000;
  2. welcometext = "Mumble Perso !";
  3. certificate = "/etc/umurmur/cert.crt";
  4. private_key = "/etc/umurmur/key.key";
  5. ca_path = "/path/to/ca/certificates/"; # Location of CA certificate. Relevant for OpenSSL only.
  6.  
  7. password = "omg";
  8. admin_password = "1369"; # Set to enable admin functionality.
  9. ban_length = 0; # Length in seconds for a ban. Default is 0. 0 = forever.
  10. enable_ban = true; # Default is false
  11. banfile = "/var/local/umurmur/var/banfile.txt"; # File to save bans to. Default is to not save bans to file.
  12. sync_banfile = true; # Keep banfile synced. Default is false, which means it is saved to at shutdown only.
  13. allow_textmessage = true; # Default is true
  14. opus_threshold = 100; # Required percentage of users that support Opus codec for it to be chosen
  15. max_users = 20;
  16.  
  17.  
  18. # bindport = 64738;
  19. # bindaddr = "192.168.1.1";
  20.  
  21. # bindport6 = 64738;
  22. # bindaddr6 = "fde4:8dba:82e1::/48";
  23.  
  24. # username and groupname for privilege dropping.
  25. # Will attempt to switch user if set.
  26. # username = "";
  27. # If groupname not set the user's default login group will be used
  28. # groupname = "";
  29.  
  30. # Log to file option. Default is logging to syslog.
  31. # umurmurd will close and reopen the logfile if SIGHUP is received.
  32. # logfile = "/var/log/umurmurd.log";
  33.  
  34. # Channel tree definition:
  35. # Root channel must always be defined first.
  36. # If a channel has a parent, the parent must be defined before the child channel(s).
  37. channels = ( {
  38. name = "Root";
  39. parent = "";
  40. description = "No entrance !";
  41. noenter = true;
  42. },
  43. {
  44. name = "Bazar de Freljord";
  45. parent = "Root";
  46. description = "Ici, on cause !";
  47. },
  48. {
  49. name = "In Game";
  50. parent = "Root";
  51. description = "LoL, encore et toujours..";
  52. },
  53. {
  54. name = "Red team";
  55. parent = "In Game";
  56. description = "Red team channel";
  57. # password = "redpw";
  58. },
  59. {
  60. name = "Blue team";
  61. parent = "In Game";
  62. description = "Blue team channel";
  63. # password = "bluepw";
  64. },
  65. {
  66. name = "Away";
  67. parent = "Root";
  68. description = "Pour les pros de l'afk.. Ouai ouai Majesty..";
  69. silent = true;
  70. position = -1; # Will appear before 'lobby' channel in the client's channel tree
  71. },
  72. {
  73. name = "5min";
  74. parent = "Away";
  75. description = "Ceci n'est pas un salon longue durée..";
  76. silent = true;
  77. },
  78. {
  79. name = "Manger";
  80. parent = "Away";
  81. description = "Bon app'";
  82. silent = true;
  83. },
  84. {
  85. name = "zZzZz";
  86. parent = "Away";
  87. description = "a.k.a. Majes'Room";
  88. silent = true;
  89. },
  90. {
  91. name = "Admin";
  92. parent = "Root";
  93. description = "Réservé";
  94. password = "Password123$";
  95. }
  96. );
  97. # Channel links configuration.
  98. channel_links = ( {
  99. source = "Bazar de Freljord";
  100. destination = "Red team";
  101. },
  102. {
  103. source = "Bazar de Freljord";
  104. destination = "Blue team";
  105. },
  106. {
  107. source = "Red team";
  108. destination = "Bazar de Freljord";
  109. },
  110. {
  111. source = "Blue team";
  112. destination = "Bazar de Freljord";
  113. }
  114. );
  115.  
  116. # The channel in which users will appear in when connecting.
  117. # Note that default channel can't have 'noenter = true' or password set
  118. default_channel = "Bazar de Freljord";
Advertisement
Add Comment
Please, Sign In to add comment