Advertisement
Guest User

Untitled

a guest
Dec 18th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. general:
  2. #Will you be running Bulletin Board Bridge in 'normal' mode, or 'secure' mode?
  3. mode: normal
  4. enable-whitelist: 'true'
  5. enable-nickname-syncing: 'false'
  6. enable-synced-banning: 'false'
  7. enable-promotion-track: 'true'
  8. enable-rank-changing: 'true'
  9. enable-post-count-rewarding: 'true'
  10. enable-anonymous-stat-tracking: 'true'
  11. #If you opted for normal mode, fill this in
  12. modes:
  13. normal:
  14. user-table: phpbb_users
  15. minecraft-login-name-field: username
  16. rank-id-field: user_rank
  17. multitable:
  18. enable-multiple-tables: 'false'
  19. second-table: second_table
  20. user-id-field-in-user-table: user_id_field_user_table
  21. user-id-field-in-second-table: user_id_field_second_table
  22. #If you opted for secure mode, fill this in
  23. secure:
  24. #forum type: options are phpbb, smf, vbulletin, kunena, xenforo, wbb, ipb, mybb, vanilla, #bbpress, custom
  25. forum: phpbb
  26. #fill this in if you are using smf, vbulletin, wbb, ipb, mybb
  27. type1:
  28. user-table: mybb_users
  29. username-field: username
  30. password-field: password
  31. rank-id-field: usergroup
  32. #fill this in if you are using phpbb, bbpress or vanilla
  33. type2:
  34. user-table: phpbb_users
  35. username-field: username
  36. password-field: user_password
  37. rank-id-field: user_rank
  38. location-of-passgen-php: http://localhost/forum/webfiles/passgen.php
  39. password-set-in-config-inc-php: 12345pass
  40. #fill this in if you are using kunena or xenforo
  41. type3:
  42. user-table: xf_user
  43. rank-id-field: user_group_id
  44. username-field: username
  45. password-field: data
  46. second-table: xf_user_authenticate
  47. user-id-field-in-user-table: user_id
  48. user-id-field-in-second-table: user_id
  49. #fill this in if you are using a custom encryption
  50. type4:
  51. user-table: user_table
  52. username-field: username_field
  53. password-field: password-field
  54. rank-id-field: rank_group_field
  55. location-of-passgen-php: http://yoursite.com/passgen.php
  56. password-set-in-config-inc-php: 12345pass
  57. mysql-connection:
  58. mysql-host: localhost
  59. mysql-user: phpbb
  60. mysql-password: ******
  61. mysql-database-name: phpbb
  62. #Map your rank IDs to groups here. world-specific overwrites default. You NEED atleast 1
  63. #entry under worlds, even if the world doesn't exist.
  64. group-mapping:
  65. default:
  66. '6': Guest
  67. '5': Player
  68. '4': Builder
  69. '3': Supporter
  70. '2': Moderator
  71. '1': Owner
  72. '7': Admin
  73. worlds:
  74. world:
  75. '6': Guest
  76. '5': Player
  77. '4': Builder
  78. '3': Supporter
  79. '2': Moderator
  80. '1': Owner
  81. '7': Admin
  82. extras:
  83. whitelist:
  84. kick-message: Sorry! Your group on the forum doesn't have access to the server!
  85. use-as-blacklist: 'false'
  86. groups:
  87. '1': 'true'
  88. '2': 'true'
  89. '3': 'true'
  90. '4': 'true'
  91. '5': 'true'
  92. '6': 'false'
  93. '7': 'true'
  94. nickname-syncing:
  95. nickname-field-in-usertable: salt
  96. synced-banning:
  97. banned-user-forum-rank-id: '0'
  98. unbanned-user-forum-rank-id: '10'
  99. ban-message: Your account on the forum is banned. You are banned from the server aswell!
  100. promotion-track:
  101. track: 6|5|4|3|2|7
  102. rank-changing:
  103. identifiers:
  104. '1': NickNameforRank1
  105. '7': NickNameforAnotherRank
  106. post-count-rewarding:
  107. currency-reward-per-post: '40'
  108. post-count-field-in-user-table: 'like_count'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement