Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
1,623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Do you allow your users to skip authentication with the bypass permission
  2. bypassPermission=true
  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.     # Is password recovery using an email allowed
  10.     enabled=false
  11.     # Mail server
  12.     host="smtp.gmail.com"
  13.     # Password for the account you want to the email from
  14.     password=""
  15.     # SMTP Port for outgoing messages
  16.     port=465
  17.     # Displays as sender in the email client
  18.     senderName="Your minecraft server name"
  19.     # Email subject/title
  20.     subject="Your new Password"
  21.     # Email contents. You can use HTML here
  22.     text="New password for %player% on Minecraft server %server%: %password%"
  23. }
  24. # Algorithms for hashing user passwords. You can also choose totp
  25. hashAlgo=totp
  26. # Should the plugin login users automatically if it's the same account from the same IP
  27. ipAutoLogin=false
  28. # Custom command that should run after the user tried to make too many attempts
  29. lockCommand=""
  30. # How many login attempts are allowed until everything is blocked
  31. maxAttempts=3
  32. # How many accounts are allowed per ip-addres. Use 0 to disable it
  33. maxIpReg=0
  34. # The user should use a strong password
  35. minPasswordLength=4
  36. # Should this plugin check for player permissions
  37. playerPermissions=true
  38. # If command only protection is enabled, these commands are protected. If the list is empty all commands are protected
  39. protectedCommands=[
  40.     op,
  41.     lp
  42. ]
  43. # Teleport the player to a safe location based on the last login coordinates
  44. safeLocation=false
  45. # Database configuration
  46. sqlConfiguration {
  47.     # Database name
  48.     database="minecraft_alice_1.10"
  49.     # Password in order to login
  50.     password="DkTCpsmwaBmZnPkN"
  51.     # Path where the database is located. This can be a file path (h2/SQLite) or an IP/Domain(MySQL)
  52.     path="localhost"
  53.     # Port for example MySQL connections
  54.     port=3306
  55.     # SQL server type. You can choose between h2, SQLite and MySQL
  56.     type=MySQL
  57.     # It's strongly recommended to enable SSL and setup a SSL certificate if the MySQL server isn't running on the same machine
  58.     useSSL=false
  59.     # Username to login the database system
  60.     username="minecraft"
  61. }
  62. teleportConfig {
  63.     coordX=0
  64.     coordY=0
  65.     coordZ=0
  66.     # Should the plugin use the default spawn from the world you specify below
  67.     defaultSpawn=false
  68.     enabled=false
  69.     # Spawn world or let it empty to use the default world specified in the server properties
  70.     worldName=""
  71. }
  72. # Number of seconds a player has time to login or will be kicked.-1 deactivates this features
  73. timeoutLogin=60
  74. # Should the plugin save the login status to the database
  75. updateLoginStatus=false
  76. # How seconds the user should wait after the user tried to make too many attempts
  77. waitTime=300
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement