Advertisement
Alfista

FlexibleLogin

Aug 13th, 2015
1,853
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.31 KB | None | 0 0
  1. # Email configuration for password recovery
  2. emailConfiguration {
  3.     # Username for the account you want to the email from
  4.     account=minecraft
  5.     # Is password recovery using an email allowed
  6.     enabled=false
  7.     # Mail server
  8.     host="mail.xxxxx.sk"
  9.     # Password for the account you want to the email from
  10.     password=xxxxx
  11.     # SMTP Port for outgoing messages
  12.     port=465
  13.     # Displays as sender in the email client
  14.     senderName="Alfi's Minecraft Server"
  15.     # Email subject/title
  16.     subject="Your new Minecraft Password"
  17.     # Email contents. You can use HTML here
  18.     text="New password for %player% on Minecraft server %server%: %password%"
  19. }
  20. # Algorithms for hashing user passwords. You can also choose totp
  21. hashAlgo=bcrypt
  22. # Should the plugin login users automatically if it's the same account from the same IP
  23. ipAutoLogin=true
  24. # Database configuration
  25. sqlConfiguration {
  26.    # Database name
  27.    database=flexiblelogin
  28.    # Password in order to login
  29.    password=""
  30.    # Path where the database is located. This can be a file path (h2/SQLite) or an IP/Domain(MySQL)
  31.    path="%DIR%"
  32.    # Port for example MySQL connections
  33.    port=3306
  34.    # SQL server type. You can choose between h2, SQLite and MySQL
  35.    type=H2
  36.    # Username to login the database system
  37.    username=""
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement