Advertisement
Guest User

Untitled

a guest
Mar 29th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.79 KB | None | 0 0
  1.  
  2.  
  3. DataSource:
  4. # What type of database do you want to use?
  5. # Valid values: sqlite, mysql
  6. backend: 'SQLITE'
  7. # Enable database caching, should improve database performance
  8. caching: true
  9. # Database host address
  10. mySQLHost: '127.0.0.1'
  11. # Database port
  12. mySQLPort: '3306'
  13. # Username about Database Connection Infos
  14. mySQLUsername: 'authme'
  15. # Password about Database Connection Infos
  16. mySQLPassword: '12345'
  17. # Database Name, use with converters or as SQLITE database name
  18. mySQLDatabase: 'authme'
  19. # Table of the database
  20. mySQLTablename: 'authme'
  21. # Column of IDs to sort data
  22. mySQLColumnId: 'id'
  23. # Column for storing or checking players nickname
  24. mySQLColumnName: 'username'
  25. # Column for storing or checking players RealName
  26. mySQLRealName: 'realname'
  27. # Column for storing players passwords
  28. mySQLColumnPassword: 'password'
  29. # Column for storing players emails
  30. mySQLColumnEmail: 'email'
  31. # Column for storing if a player is logged in or not
  32. mySQLColumnLogged: 'isLogged'
  33. # Column for storing players ips
  34. mySQLColumnIp: 'ip'
  35. # Column for storing players lastlogins
  36. mySQLColumnLastLogin: 'lastlogin'
  37. # Column for storing player LastLocation - X
  38. mySQLlastlocX: 'x'
  39. # Column for storing player LastLocation - Y
  40. mySQLlastlocY: 'y'
  41. # Column for storing player LastLocation - Z
  42. mySQLlastlocZ: 'z'
  43. # Column for storing player LastLocation - World Name
  44. mySQLlastlocWorld: 'world'
  45. # Enable this when you allow registration through a website
  46. mySQLWebsite: false
  47.  
  48. ExternalBoardOptions:
  49. # Column for storing players passwords salts
  50. mySQLColumnSalt: ''
  51. # Column for storing players groups
  52. mySQLColumnGroup: ''
  53. # -1 means disabled. If you want that only activated players
  54. # can log into your server, you can set here the group number
  55. # of unactivated users, needed for some forum/CMS support
  56. nonActivedUserGroup: -1
  57. # Other MySQL columns where we need to put the username (case-sensitive)
  58. mySQLOtherUsernameColumns: []
  59. # How much log2 rounds needed in BCrypt (do not change if you do not know what it does)
  60. bCryptLog2Round: 10
  61. # phpBB table prefix defined during the phpBB installation process
  62. phpbbTablePrefix: 'phpbb_'
  63. # phpBB activated group ID; 2 is the default registered group defined by phpBB
  64. phpbbActivatedGroupId: 2
  65. # Wordpress prefix defined during WordPress installation
  66. wordpressTablePrefix: 'wp_'
  67.  
  68. Converter:
  69. Rakamak:
  70. # Rakamak file name
  71. fileName: 'users.rak'
  72. # Rakamak use IP?
  73. useIP: false
  74. # Rakamak IP file name
  75. ipFileName: 'UsersIp.rak'
  76. CrazyLogin:
  77. # CrazyLogin database file name
  78. fileName: 'accounts.db'
  79.  
  80. settings:
  81. # The name shown in the help messages
  82. helpHeader: 'AuthMeReloaded'
  83. sessions:
  84. # Do you want to enable the session feature?
  85. # If enabled, when a player authenticates successfully,
  86. # his IP and his nickname is saved.
  87. # The next time the player joins the server, if his IP
  88. # is the same as last time and the timeout hasn't
  89. # expired, he will not need to authenticate.
  90. enabled: false
  91. # After how many minutes should a session expire?
  92. # 0 for unlimited time (Very dangerous, use it at your own risk!)
  93. # Remember that sessions will end only after the timeout, and
  94. # if the player's IP has changed but the timeout hasn't expired,
  95. # the player will be kicked from the server due to invalid session
  96. timeout: 10
  97. # Should the session expire if the player tries to log in with
  98. # another IP address?
  99. sessionExpireOnIpChange: true
  100. # Message language, available: en, de, br, cz, pl, fr, ru, hu, sk, es, zhtw, fi, zhcn, lt, it, ko, pt
  101. messagesLanguage: 'en'
  102. restrictions:
  103. # Can not authenticated players chat and see the chat log?
  104. # Keep in mind that this feature also blocks all commands not
  105. # listed in the list below.
  106. allowChat: false
  107. # Allow unlogged users to use all the commands if registration is not forced!
  108. # WARNING: use this only if you need it!)
  109. allowAllCommandsIfRegistrationIsOptional: false
  110. # Allowed commands for unauthenticated players
  111. allowCommands:
  112. - '/login'
  113. - '/register'
  114. - '/l'
  115. - '/reg'
  116. - '/email'
  117. - '/captcha'
  118. # Max number of allowed registrations per IP
  119. maxRegPerIp: 0
  120. # Minimum allowed username length
  121. minNicknameLength: 4
  122. # Maximum allowed username length
  123. maxNicknameLength: 16
  124. # When this setting is enabled, online players can't be kicked out
  125. # due to "Logged in from another Location"
  126. # This setting will prevent potential security exploits.
  127. ForceSingleSession: true
  128. # If enabled, every player will be teleported to the world spawnpoint
  129. # after successful authentication.
  130. # The quit location of the player will be overwritten.
  131. # This is different from "teleportUnAuthedToSpawn" that teleport player
  132. # back to his quit location after the authentication.
  133. ForceSpawnLocOnJoinEnabled: true
  134. # This option will save the quit location of the players.
  135. SaveQuitLocation: false
  136. # To activate the restricted user feature you need
  137. # to enable this option and configure the AllowedRestrictedUser field.
  138. AllowRestrictedUser: false
  139. # The restricted user feature will kick players listed below
  140. # if they don't match the defined IP address.
  141. # Example:
  142. # AllowedRestrictedUser:
  143. # - playername;127.0.0.1
  144. AllowedRestrictedUser:
  145. - 'playername;127.0.0.1'
  146. # Should unregistered players be kicked immediately?
  147. kickNonRegistered: false
  148. # Should players be kicked on wrong password?
  149. kickOnWrongPassword: false
  150. # Should not logged in players be teleported to the spawn?
  151. # After the authentication they will be teleported back to
  152. # their normal position.
  153. teleportUnAuthedToSpawn: true
  154. # Can unregistered players walk around?
  155. allowMovement: false
  156. # Should not authenticated players have speed = 0?
  157. # This will reset the fly/walk speed to default value after the login.
  158. removeSpeed: true
  159. # After how many seconds should players who fail to login or register
  160. # be kicked? Set to 0 to disable.
  161. timeout: 30
  162. # Regex syntax of allowed characters in the player name.
  163. allowedNicknameCharacters: '[a-zA-Z0-9_]*'
  164. # How far can unregistered players walk?
  165. # Set to 0 for unlimited radius
  166. allowedMovementRadius: 100
  167. # Enable double check of password when you register
  168. # when it's true, registration requires that kind of command:
  169. # /register <password> <confirmPassword>
  170. enablePasswordConfirmation: true
  171. # Should we protect the player inventory before logging in? Requires ProtocolLib.
  172. ProtectInventoryBeforeLogIn: false
  173. # Should we deny the tabcomplete feature before logging in? Requires ProtocolLib.
  174. DenyTabCompleteBeforeLogin: true
  175. # Should we hide the tablist before logging in? Requires ProtocolLib.
  176. HideTablistBeforeLogin: true
  177. # Should we display all other accounts from a player when he joins?
  178. # permission: /authme.admin.accounts
  179. displayOtherAccounts: false
  180. # WorldNames where we need to force the spawn location for ForceSpawnLocOnJoinEnabled
  181. # Case-sensitive!
  182. ForceSpawnOnTheseWorlds:
  183. - 'Lobby1'
  184. - 'ASkyBlock'
  185. - 'ASkyBlock_nether'
  186. - 'bw1'
  187. - 'bw2'
  188. - 'bw3'
  189. - 'bw4'
  190. - 'event'
  191. - 'eventik'
  192. - 'eventMinigames'
  193. - 'flatland'
  194. - 'GoldRush'
  195. - 'goldrush1'
  196. - 'GR1'
  197. - 'jail'
  198. - 'lobbicka'
  199. - 'lobby1'
  200. - 'lobbybw'
  201. - 'minigame'
  202. - 'minihry'
  203. - 'Priroda'
  204. - 'projekt'
  205. - 'pvp'
  206. - 'sg1'
  207. - 'ships'
  208. - 'skiny'
  209. - 'SkyWarsBaseWorld'
  210. - 'sochyher'
  211. - 'superwars'
  212. - 'testy'
  213. - 'uf'
  214. - 'world'
  215. - 'world_nether'
  216. - 'world_the_end'
  217. # Ban ip when the ip is not the ip registered in database
  218. banUnsafedIP: false
  219. # Spawn priority; values: authme, essentials, multiverse, default
  220. spawnPriority: 'authme,essentials,multiverse,default'
  221. # Maximum Login authorized by IP
  222. maxLoginPerIp: 0
  223. # Maximum Join authorized by IP
  224. maxJoinPerIp: 0
  225. # AuthMe will NEVER teleport players if set to true!
  226. noTeleport: true
  227. # Regex syntax for allowed chars in passwords
  228. allowedPasswordCharacters: '[\x21-\x7E]*'
  229. GameMode:
  230. # Force survival gamemode when player joins?
  231. ForceSurvivalMode: false
  232. unrestrictions:
  233. # Below you can list all account names that
  234. # AuthMe will ignore for registration or login, configure it
  235. # at your own risk!! Remember that if you are going to add
  236. # nickname with [], you have to delimit name with ' '.
  237. # this option add compatibility with BuildCraft and some
  238. # other mods.
  239. # It is case-sensitive!
  240. UnrestrictedName: []
  241. security:
  242. # Minimum length of password
  243. minPasswordLength: 5
  244. # Maximum length of password
  245. passwordMaxLength: 30
  246. # This is a very important option: every time a player joins the server,
  247. # if they are registered, AuthMe will switch him to unLoggedInGroup.
  248. # This should prevent all major exploits.
  249. # You can set up your permission plugin with this special group to have no permissions,
  250. # or only permission to chat (or permission to send private messages etc.).
  251. # The better way is to set up this group with few permissions, so if a player
  252. # tries to exploit an account they can do only what you've defined for the group.
  253. # After, a logged in player will be moved to his correct permissions group!
  254. # Please note that the group name is case-sensitive, so 'admin' is different from 'Admin'
  255. # Otherwise your group will be wiped and the player will join in the default group []!
  256. # Example unLoggedinGroup: NotLogged
  257. unLoggedinGroup: 'unLoggedinGroup'
  258. # Possible values: MD5, SHA1, SHA256, WHIRLPOOL, XAUTH, MD5VB, PHPBB,
  259. # MYBB, IPB3, PHPFUSION, SMF, XENFORO, SALTED2MD5, JOOMLA, BCRYPT, WBB3, SHA512,
  260. # DOUBLEMD5, PBKDF2, PBKDF2DJANGO, WORDPRESS, ROYALAUTH, CUSTOM (for developers only)
  261. passwordHash: 'SHA256'
  262. # Salt length for the SALTED2MD5 MD5(MD5(password)+salt)
  263. doubleMD5SaltLength: 8
  264. # If password checking return false, do we need to check with all
  265. # other password algorithm to check an old password?
  266. # AuthMe will update the password to the new password hash
  267. supportOldPasswordHash: false
  268. # Prevent unsafe passwords from being used; put them in lowercase!
  269. # unsafePasswords:
  270. # - '123456'
  271. # - 'password'
  272. unsafePasswords:
  273. - '123456'
  274. - 'password'
  275. - 'qwerty'
  276. - '12345'
  277. - '54321'
  278. registration:
  279. # Enable registration on the server?
  280. enabled: true
  281. # Send every X seconds a message to a player to
  282. # remind him that he has to login/register
  283. messageInterval: 5
  284. # Only registered and logged in players can play.
  285. # See restrictions for exceptions
  286. force: true
  287. # Do we replace password registration by an email registration method?
  288. enableEmailRegistrationSystem: false
  289. # Enable double check of email when you register
  290. # when it's true, registration requires that kind of command:
  291. # /register <email> <confirmEmail>
  292. doubleEmailCheck: false
  293. # Do we force kick a player after a successful registration?
  294. # Do not use with login feature below
  295. forceKickAfterRegister: false
  296. # Does AuthMe need to enforce a /login after a successful registration?
  297. forceLoginAfterRegister: false
  298. # Force these commands after /login, without any '/', use %p to replace with player name
  299. forceCommands: []
  300. # Force these commands after /login as service console, without any '/'. Use %p to replace with player name
  301. forceCommandsAsConsole: []
  302. # Force these commands after /register, without any '/', use %p to replace with player name
  303. forceRegisterCommands: []
  304. # Force these commands after /register as a server console, without any '/'. Use %p to replace with player name
  305. forceRegisterCommandsAsConsole: []
  306. # Enable to display the welcome message (welcome.txt) after a registration or a login
  307. # You can use colors in this welcome.txt + some replaced strings:
  308. # {PLAYER}: player name, {ONLINE}: display number of online players, {MAXPLAYERS}: display server slots,
  309. # {IP}: player ip, {LOGINS}: number of players logged, {WORLD}: player current world, {SERVER}: server name
  310. # {VERSION}: get current bukkit version, {COUNTRY}: player country
  311. useWelcomeMessage: true
  312. # Do we need to broadcast the welcome message to all server or only to the player? set true for server or false for player
  313. broadcastWelcomeMessage: false
  314. # Should we delay the join message and display it once the player has logged in?
  315. delayJoinMessage: true
  316. # Should we remove join messages altogether?
  317. removeJoinMessage: true
  318. # Should we remove leave messages?
  319. removeLeaveMessage: true
  320. # Do we need to add potion effect Blinding before login/reigster?
  321. applyBlindEffect: true
  322. # Do we need to prevent people to login with another case?
  323. # If Xephi is registered, then Xephi can login, but not XEPHI/xephi/XePhI
  324. preventOtherCase: false
  325.  
  326. permission:
  327. # Take care with this option; if you don't want
  328. # to use Vault and group switching of AuthMe
  329. # for unloggedIn players, set this setting to true.
  330. # Default is false.
  331. EnablePermissionCheck: false
  332.  
  333. Email:
  334. # Email SMTP server host
  335. mailSMTP: 'smtp.gmail.com'
  336. # Email SMTP server port
  337. mailPort: 465
  338. # Email account which sends the mails
  339. mailAccount: ''
  340. # Email account password
  341. mailPassword: ''
  342. # Custom sender name, replacing the mailAccount name in the email
  343. mailSenderName: ''
  344. # Recovery password length
  345. RecoveryPasswordLength: 8
  346. # Mail Subject
  347. mailSubject: 'Your new AuthMe Password'
  348. # Like maxRegPerIP but with email
  349. maxRegPerEmail: 1
  350. # Recall players to add an email?
  351. recallPlayers: false
  352. # Delay in minute for the recall scheduler
  353. delayRecall: 5
  354. # Blacklist these domains for emails
  355. emailBlacklisted:
  356. - '10minutemail.com'
  357. # Whitelist ONLY these domains for emails
  358. emailWhitelisted: []
  359. # Send the new password drawn in an image?
  360. generateImage: false
  361. # The OAuth2 token
  362. emailOauth2Token: ''
  363.  
  364. Hooks:
  365. # Do we need to hook with multiverse for spawn checking?
  366. multiverse: true
  367. # Do we need to hook with BungeeCord?
  368. bungeecord: true
  369. # Send player to this BungeeCord server after register/login
  370. sendPlayerTo: ''
  371. # Do we need to disable Essentials SocialSpy on join?
  372. disableSocialSpy: true
  373. # Do we need to force /motd Essentials command on join?
  374. useEssentialsMotd: false
  375. # Do we need to cache custom Attributes?
  376. customAttributes: false
  377.  
  378. VeryGames:
  379. # These features are only available on VeryGames Server Provider
  380. enableIpCheck: false
  381.  
  382. Protection:
  383. # Enable some servers protection (country based login, antibot)
  384. enableProtection: false
  385. # Countries allowed to join the server and register, see http://dev.bukkit.org/bukkit-plugins/authme-reloaded/pages/countries-codes/ for countries' codes
  386. # PLEASE USE QUOTES!
  387. countries:
  388. - 'US'
  389. - 'GB'
  390. # Countries not allowed to join the server and register
  391. # PLEASE USE QUOTES!
  392. countriesBlacklist:
  393. - 'A1'
  394. # Do we need to enable automatic antibot system?
  395. enableAntiBot: false
  396. # Max number of player allowed to login in 5 secs before enable AntiBot system automatically
  397. antiBotSensibility: 5
  398. # Duration in minutes of the antibot automatic system
  399. antiBotDuration: 10
  400.  
  401. Purge:
  402. # If enabled, AuthMe automatically purges old, unused accounts
  403. useAutoPurge: false
  404. # Number of Days an account become Unused
  405. daysBeforeRemovePlayer: 60
  406. # Do we need to remove the player.dat file during purge process?
  407. removePlayerDat: false
  408. # Do we need to remove the Essentials/users/player.yml file during purge process?
  409. removeEssentialsFile: false
  410. # World where are players.dat stores
  411. defaultWorld: 'lobby1'
  412. # Do we need to remove LimitedCreative/inventories/player.yml, player_creative.yml files during purge process ?
  413. removeLimitedCreativesInventories: false
  414. # Do we need to remove the AntiXRayData/PlayerData/player file during purge process?
  415. removeAntiXRayFile: false
  416. # Do we need to remove permissions?
  417. removePermissions: false
  418.  
  419. Security:
  420. SQLProblem:
  421. # Stop the server if we can't contact the sql database
  422. # Take care with this, if you set this to false,
  423. # AuthMe will automatically disable and the server won't be protected!
  424. stopServer: true
  425. ReloadCommand:
  426. # /reload support
  427. useReloadCommandSupport: true
  428. console:
  429. # Remove spam from console?
  430. noConsoleSpam: false
  431. # Remove passwords from console?
  432. removePassword: true
  433. # Copy AuthMe log output in a separate file as well?
  434. logConsole: true
  435. captcha:
  436. # Player need to put a captcha when he fails too lot the password
  437. useCaptcha: false
  438. # Max allowed tries before request a captcha
  439. maxLoginTry: 5
  440. # Captcha length
  441. captchaLength: 5
  442. stop:
  443. # Kick players before stopping the server, that allow us to save position of players
  444. # and all needed information correctly without any corruption.
  445. kickPlayersBeforeStopping: true
  446.  
  447. BackupSystem:
  448. # Enable or disable automatic backup
  449. ActivateBackup: false
  450. # Set backup at every start of server
  451. OnServerStart: false
  452. # Set backup at every stop of server
  453. OnServerStop: true
  454. # Windows only mysql installation Path
  455. MysqlWindowsPath: 'C:\\Program Files\\MySQL\\MySQL Server 5.1\\'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement