Advertisement
Guest User

Untitled

a guest
Mar 13th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.10 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: true
  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. - '/passpartu'
  117. - '/email'
  118. - '/captcha'
  119. # Max number of allowed registrations per IP
  120. maxRegPerIp: 5
  121. # Minimum allowed username length
  122. minNicknameLength: 3
  123. # Maximum allowed username length
  124. maxNicknameLength: 20
  125. # When this setting is enabled, online players can't be kicked out
  126. # due to "Logged in from another Location"
  127. # This setting will prevent potential security exploits.
  128. ForceSingleSession: true
  129. # If enabled, every player will be teleported to the world spawnpoint
  130. # after successful authentication.
  131. # The quit location of the player will be overwritten.
  132. # This is different from "teleportUnAuthedToSpawn" that teleport player
  133. # back to his quit location after the authentication.
  134. ForceSpawnLocOnJoinEnabled: false
  135. # This option will save the quit location of the players.
  136. SaveQuitLocation: false
  137. # To activate the restricted user feature you need
  138. # to enable this option and configure the AllowedRestrictedUser field.
  139. AllowRestrictedUser: false
  140. # The restricted user feature will kick players listed below
  141. # if they don't match the defined IP address.
  142. # Example:
  143. # AllowedRestrictedUser:
  144. # - playername;127.0.0.1
  145. AllowedRestrictedUser:
  146. - 'playername;127.0.0.1'
  147. # Should unregistered players be kicked immediately?
  148. kickNonRegistered: false
  149. # Should players be kicked on wrong password?
  150. kickOnWrongPassword: false
  151. # Should not logged in players be teleported to the spawn?
  152. # After the authentication they will be teleported back to
  153. # their normal position.
  154. teleportUnAuthedToSpawn: false
  155. # Can unregistered players walk around?
  156. allowMovement: false
  157. # Should not authenticated players have speed = 0?
  158. # This will reset the fly/walk speed to default value after the login.
  159. removeSpeed: true
  160. # After how many seconds should players who fail to login or register
  161. # be kicked? Set to 0 to disable.
  162. timeout: 30
  163. # Regex syntax of allowed characters in the player name.
  164. allowedNicknameCharacters: '[a-zA-Z0-9_]*'
  165. # How far can unregistered players walk?
  166. # Set to 0 for unlimited radius
  167. allowedMovementRadius: 100
  168. # Enable double check of password when you register
  169. # when it's true, registration requires that kind of command:
  170. # /register <password> <confirmPassword>
  171. enablePasswordConfirmation: true
  172. # Should we protect the player inventory before logging in? Requires ProtocolLib.
  173. ProtectInventoryBeforeLogIn: false
  174. # Should we deny the tabcomplete feature before logging in? Requires ProtocolLib.
  175. DenyTabCompleteBeforeLogin: true
  176. # Should we hide the tablist before logging in? Requires ProtocolLib.
  177. HideTablistBeforeLogin: true
  178. # Should we display all other accounts from a player when he joins?
  179. # permission: /authme.admin.accounts
  180. displayOtherAccounts: true
  181. # WorldNames where we need to force the spawn location for ForceSpawnLocOnJoinEnabled
  182. # Case-sensitive!
  183. ForceSpawnOnTheseWorlds:
  184. - 'world'
  185. - 'world_nether'
  186. - 'world_the_end'
  187. # Ban ip when the ip is not the ip registered in database
  188. banUnsafedIP: false
  189. # Spawn priority; values: authme, essentials, multiverse, default
  190. spawnPriority: 'authme,essentials,multiverse,default'
  191. # Maximum Login authorized by IP
  192. maxLoginPerIp: 0
  193. # Maximum Join authorized by IP
  194. maxJoinPerIp: 0
  195. # AuthMe will NEVER teleport players if set to true!
  196. noTeleport: false
  197. # Regex syntax for allowed chars in passwords
  198. allowedPasswordCharacters: '[a-zA-Z0-9_?!@+&-]*'
  199. GameMode:
  200. # Force survival gamemode when player joins?
  201. ForceSurvivalMode: false
  202. unrestrictions:
  203. # Below you can list all account names that
  204. # AuthMe will ignore for registration or login, configure it
  205. # at your own risk!! Remember that if you are going to add
  206. # nickname with [], you have to delimit name with ' '.
  207. # this option add compatibility with BuildCraft and some
  208. # other mods.
  209. # It is case-sensitive!
  210. UnrestrictedName: []
  211. security:
  212. # Minimum length of password
  213. minPasswordLength: 4
  214. # Maximum length of password
  215. passwordMaxLength: 30
  216. # This is a very important option: every time a player joins the server,
  217. # if they are registered, AuthMe will switch him to unLoggedInGroup.
  218. # This should prevent all major exploits.
  219. # You can set up your permission plugin with this special group to have no permissions,
  220. # or only permission to chat (or permission to send private messages etc.).
  221. # The better way is to set up this group with few permissions, so if a player
  222. # tries to exploit an account they can do only what you've defined for the group.
  223. # After, a logged in player will be moved to his correct permissions group!
  224. # Please note that the group name is case-sensitive, so 'admin' is different from 'Admin'
  225. # Otherwise your group will be wiped and the player will join in the default group []!
  226. # Example unLoggedinGroup: NotLogged
  227. unLoggedinGroup: 'unLoggedinGroup'
  228. # Possible values: MD5, SHA1, SHA256, WHIRLPOOL, XAUTH, MD5VB, PHPBB,
  229. # MYBB, IPB3, PHPFUSION, SMF, XENFORO, SALTED2MD5, JOOMLA, BCRYPT, WBB3, SHA512,
  230. # DOUBLEMD5, PBKDF2, PBKDF2DJANGO, WORDPRESS, ROYALAUTH, CUSTOM (for developers only)
  231. passwordHash: 'SHA256'
  232. # Salt length for the SALTED2MD5 MD5(MD5(password)+salt)
  233. doubleMD5SaltLength: 8
  234. # If password checking return false, do we need to check with all
  235. # other password algorithm to check an old password?
  236. # AuthMe will update the password to the new password hash
  237. supportOldPasswordHash: false
  238. # Prevent unsafe passwords from being used; put them in lowercase!
  239. # unsafePasswords:
  240. # - '123456'
  241. # - 'password'
  242. unsafePasswords: []
  243. registration:
  244. # Enable registration on the server?
  245. enabled: true
  246. # Send every X seconds a message to a player to
  247. # remind him that he has to login/register
  248. messageInterval: 5
  249. # Only registered and logged in players can play.
  250. # See restrictions for exceptions
  251. force: true
  252. # Do we replace password registration by an email registration method?
  253. enableEmailRegistrationSystem: false
  254. # Enable double check of email when you register
  255. # when it's true, registration requires that kind of command:
  256. # /register <email> <confirmEmail>
  257. doubleEmailCheck: false
  258. # Do we force kick a player after a successful registration?
  259. # Do not use with login feature below
  260. forceKickAfterRegister: false
  261. # Does AuthMe need to enforce a /login after a successful registration?
  262. forceLoginAfterRegister: false
  263. # Force these commands after /login, without any '/', use %p to replace with player name
  264. forceCommands: []
  265. # Force these commands after /login as service console, without any '/'. Use %p to replace with player name
  266. forceCommandsAsConsole: []
  267. # Force these commands after /register, without any '/', use %p to replace with player name
  268. forceRegisterCommands: []
  269. # Force these commands after /register as a server console, without any '/'. Use %p to replace with player name
  270. forceRegisterCommandsAsConsole: []
  271. # Enable to display the welcome message (welcome.txt) after a registration or a login
  272. # You can use colors in this welcome.txt + some replaced strings:
  273. # {PLAYER}: player name, {ONLINE}: display number of online players, {MAXPLAYERS}: display server slots,
  274. # {IP}: player ip, {LOGINS}: number of players logged, {WORLD}: player current world, {SERVER}: server name
  275. # {VERSION}: get current bukkit version, {COUNTRY}: player country
  276. useWelcomeMessage: true
  277. # Do we need to broadcast the welcome message to all server or only to the player? set true for server or false for player
  278. broadcastWelcomeMessage: false
  279. # Should we delay the join message and display it once the player has logged in?
  280. delayJoinMessage: false
  281. # Should we remove join messages altogether?
  282. removeJoinMessage: false
  283. # Should we remove leave messages?
  284. removeLeaveMessage: false
  285. # Do we need to add potion effect Blinding before login/reigster?
  286. applyBlindEffect: false
  287. # Do we need to prevent people to login with another case?
  288. # If Xephi is registered, then Xephi can login, but not XEPHI/xephi/XePhI
  289. preventOtherCase: false
  290.  
  291. permission:
  292. # Take care with this option; if you don't want
  293. # to use Vault and group switching of AuthMe
  294. # for unloggedIn players, set this setting to true.
  295. # Default is false.
  296. EnablePermissionCheck: false
  297.  
  298. Email:
  299. # Email SMTP server host
  300. mailSMTP: 'smtp.gmail.com'
  301. # Email SMTP server port
  302. mailPort: 465
  303. # Email account which sends the mails
  304. mailAccount: ''
  305. # Email account password
  306. mailPassword: ''
  307. # Custom sender name, replacing the mailAccount name in the email
  308. mailSenderName: ''
  309. # Recovery password length
  310. RecoveryPasswordLength: 8
  311. # Mail Subject
  312. mailSubject: 'Your new AuthMe Password'
  313. # Like maxRegPerIP but with email
  314. maxRegPerEmail: 1
  315. # Recall players to add an email?
  316. recallPlayers: false
  317. # Delay in minute for the recall scheduler
  318. delayRecall: 5
  319. # Blacklist these domains for emails
  320. emailBlacklisted:
  321. - '10minutemail.com'
  322. # Whitelist ONLY these domains for emails
  323. emailWhitelisted: []
  324. # Send the new password drawn in an image?
  325. generateImage: true
  326. # The OAuth2 token
  327. emailOauth2Token: ''
  328.  
  329. Hooks:
  330. # Do we need to hook with multiverse for spawn checking?
  331. multiverse: true
  332. # Do we need to hook with BungeeCord?
  333. bungeecord: false
  334. # Send player to this BungeeCord server after register/login
  335. sendPlayerTo: ''
  336. # Do we need to disable Essentials SocialSpy on join?
  337. disableSocialSpy: true
  338. # Do we need to force /motd Essentials command on join?
  339. useEssentialsMotd: false
  340. # Do we need to cache custom Attributes?
  341. customAttributes: false
  342.  
  343. VeryGames:
  344. # These features are only available on VeryGames Server Provider
  345. enableIpCheck: false
  346.  
  347. Protection:
  348. # Enable some servers protection (country based login, antibot)
  349. enableProtection: false
  350. # Countries allowed to join the server and register, see http://dev.bukkit.org/bukkit-plugins/authme-reloaded/pages/countries-codes/ for countries' codes
  351. # PLEASE USE QUOTES!
  352. countries:
  353. - 'US'
  354. - 'GB'
  355. # Countries not allowed to join the server and register
  356. # PLEASE USE QUOTES!
  357. countriesBlacklist:
  358. - 'A1'
  359. # Do we need to enable automatic antibot system?
  360. enableAntiBot: false
  361. # Max number of player allowed to login in 5 secs before enable AntiBot system automatically
  362. antiBotSensibility: 5
  363. # Duration in minutes of the antibot automatic system
  364. antiBotDuration: 10
  365.  
  366. Purge:
  367. # If enabled, AuthMe automatically purges old, unused accounts
  368. useAutoPurge: false
  369. # Number of Days an account become Unused
  370. daysBeforeRemovePlayer: 60
  371. # Do we need to remove the player.dat file during purge process?
  372. removePlayerDat: false
  373. # Do we need to remove the Essentials/users/player.yml file during purge process?
  374. removeEssentialsFile: false
  375. # World where are players.dat stores
  376. defaultWorld: 'world'
  377. # Do we need to remove LimitedCreative/inventories/player.yml, player_creative.yml files during purge process ?
  378. removeLimitedCreativesInventories: false
  379. # Do we need to remove the AntiXRayData/PlayerData/player file during purge process?
  380. removeAntiXRayFile: false
  381. # Do we need to remove permissions?
  382. removePermissions: false
  383.  
  384. Security:
  385. SQLProblem:
  386. # Stop the server if we can't contact the sql database
  387. # Take care with this, if you set this to false,
  388. # AuthMe will automatically disable and the server won't be protected!
  389. stopServer: true
  390. ReloadCommand:
  391. # /reload support
  392. useReloadCommandSupport: true
  393. console:
  394. # Remove spam from console?
  395. noConsoleSpam: false
  396. # Remove passwords from console?
  397. removePassword: true
  398. # Copy AuthMe log output in a separate file as well?
  399. logConsole: true
  400. captcha:
  401. # Player need to put a captcha when he fails too lot the password
  402. useCaptcha: true
  403. # Max allowed tries before request a captcha
  404. maxLoginTry: 5
  405. # Captcha length
  406. captchaLength: 5
  407. stop:
  408. # Kick players before stopping the server, that allow us to save position of players
  409. # and all needed information correctly without any corruption.
  410. kickPlayersBeforeStopping: true
  411.  
  412. BackupSystem:
  413. # Enable or disable automatic backup
  414. ActivateBackup: false
  415. # Set backup at every start of server
  416. OnServerStart: false
  417. # Set backup at every stop of server
  418. OnServerStop: true
  419. # Windows only mysql installation Path
  420. MysqlWindowsPath: 'C:\\Program Files\\MySQL\\MySQL Server 5.1\\'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement