Guest User

Untitled

a guest
Mar 3rd, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. # Do you allow your users to skip authentication with the bypass permission
  2. bypassPermission=false
  3. # Should only the specified commands be protected from unauthorized access
  4. commandOnlyProtection=false
  5. # Email configuration for password recovery
  6. emailConfiguration {
  7. # Username for the account you want to the email from
  8. account=""
  9. # Email contents. You can use HTML here
  10. contentTemplate {
  11. arguments {}
  12. closeArg="}"
  13. content {
  14. text="New password for Builder{name=player, optional=true} on Minecraft server Builder{name=server, optional=true}: Builder{name=, optional=true}"
  15. }
  16. openArg="{"
  17. options {
  18. closeArg="}"
  19. openArg="{"
  20. }
  21. }
  22. # Is password recovery using an email allowed
  23. enabled=false
  24. # Mail server
  25. host="smtp.gmail.com"
  26. # Password for the account you want to the email from
  27. password=""
  28. # SMTP Port for outgoing messages
  29. port=465
  30. # Displays as sender in the email client
  31. senderName=PokeNationBR
  32. # Email subject/title
  33. subject=Password
  34. # Email subject/title
  35. subjectTemplate {
  36. arguments {}
  37. closeArg="}"
  38. content {
  39. text="Your new Password"
  40. }
  41. openArg="{"
  42. options {
  43. closeArg="}"
  44. openArg="{"
  45. }
  46. }
  47. # Email contents. You can use HTML here
  48. text="New password for %player% on Minecraft server %server%: %password%"
  49. }
  50. # Algorithms for hashing user passwords. You can also choose totp
  51. hashAlgo=bcrypt
  52. # Should the plugin login users automatically if it's the same account from the same IP
  53. ipAutoLogin=true
  54. # Custom command that should run after the user tried to make too many attempts
  55. lockCommand=""
  56. # How many login attempts are allowed until everything is blocked
  57. maxAttempts=5
  58. # How many accounts are allowed per ip-addres. Use 0 to disable it
  59. maxIpReg=3
  60. # Interval where the please login will be printed to the user
  61. messageInterval=2
  62. # The user should use a strong password
  63. minPasswordLength=4
  64. # Should this plugin check for player permissions
  65. playerPermissions=false
  66. # If command only protection is enabled, these commands are protected. If the list is empty all commands are protected
  67. protectedCommands=[
  68. op,
  69. pex,
  70. lp
  71. ]
  72. # Teleport the player to a safe location based on the last login coordinates
  73. safeLocation=false
  74. # Database configuration
  75. sqlConfiguration {
  76. # Database name
  77. database=flexiblelogin
  78. # Password in order to login
  79. password=""
  80. # Path where the database is located. This can be a file path (h2/SQLite) or an IP/Domain (MySQL/MariaDB)
  81. path="%DIR%"
  82. # Port for example MySQL connections
  83. port=3306
  84. # SQL server type. You can choose between h2, SQLite and MySQL/MariaDB
  85. type=H2
  86. # It's strongly recommended to enable SSL and setup a SSL certificate if the MySQL/MariaDB server isn't running on the same machine
  87. useSSL=false
  88. # Username to login the database system
  89. username=""
  90. }
  91. teleportConfig {
  92. coordX=0
  93. coordY=0
  94. coordZ=0
  95. # Should the plugin use the default spawn from the world you specify below
  96. defaultSpawn=false
  97. enabled=false
  98. # Spawn world or let it empty to use the default world specified in the server properties
  99. worldName=""
  100. }
  101. # Number of seconds a player has time to login or will be kicked.-1 deactivates this features
  102. timeoutLogin=30
  103. # Should the plugin save the login status to the database
  104. updateLoginStatus=false
  105. # Regular expression for verifying validate player names. Default is a-zA-Z with 2-16 length
  106. validNames="^\\w{2,16}$"
  107. # How seconds the user should wait after the user tried to make too many attempts
  108. waitTime=300
Add Comment
Please, Sign In to add comment