2013-03-09 03:42:17 +01:00
DataSource :
2015-09-20 13:41:06 +02:00
# What type of database do you want to use?
2015-11-08 01:35:13 +01:00
# Valid values: sqlite, mysql
2015-07-06 02:43:12 +02:00
backend : sqlite
2015-11-08 01:35:13 +01:00
# Enable database caching, should improve database performance
2015-07-14 11:46:43 +02:00
caching : true
2013-10-17 05:14:46 +02:00
# Database location
2013-03-09 03:42:17 +01:00
mySQLHost : 127.0 .0 .1
2015-07-14 11:46:43 +02:00
# Database Port
mySQLPort : '3306'
2015-09-19 20:20:46 +02:00
# MySql Max Connections
2015-11-03 01:37:00 +01:00
mySQLMaxConections : 8
2015-07-14 11:46:43 +02:00
# Username about Database Connection Infos
mySQLUsername : authme
2013-10-17 05:14:46 +02:00
# Password about Database Connection Infos
2013-03-09 03:42:17 +01:00
mySQLPassword : '12345'
2015-07-14 11:46:43 +02:00
# Database Name, use with converters or as SQLITE database name
mySQLDatabase : authme
# Table of the database
mySQLTablename : authme
# Column of IDs to sort data
mySQLColumnId : id
# Column for storing or checking players nickname
mySQLColumnName : username
# Column for storing players passwords
mySQLColumnPassword : password
# Column for storing players emails
mySQLColumnEmail : email
# Column for Saving if a player is logged in or not
mySQLColumnLogged : isLogged
# Column for storing players IPs
mySQLColumnIp : ip
# Column for storing players lastlogins
mySQLColumnLastLogin : lastlogin
2013-10-17 05:14:46 +02:00
# Column for SaveQuitLocation - X
2013-03-09 03:42:17 +01:00
mySQLlastlocX : x
2013-10-17 05:14:46 +02:00
# Column for SaveQuitLocation - Y
2013-06-20 02:15:27 +02:00
mySQLlastlocY : y
2013-10-17 05:14:46 +02:00
# Column for SaveQuitLocation - Z
2013-06-20 02:15:27 +02:00
mySQLlastlocZ : z
2013-10-17 05:14:46 +02:00
# Column for SaveQuitLocation - World name
2013-06-20 02:15:27 +02:00
mySQLlastlocWorld : world
2015-07-23 16:23:25 +02:00
# Column for RealName
mySQLRealName : realname
2015-10-12 15:49:19 +02:00
# Enable this when you allow registration through a website
mySQLWebsite : false
2013-03-09 03:42:17 +01:00
settings :
2015-11-29 14:27:44 +01:00
# The name shown in the help messages.
helpHeader : AuthMeReloaded
2013-03-09 03:42:17 +01:00
sessions :
2015-10-12 15:49:19 +02:00
# Do you want to enable the session feature?
2015-09-20 13:41:06 +02:00
# If enabled, when a player authenticates successfully,
# his IP and his nickname is saved.
2015-10-12 15:49:19 +02:00
# The next time the player joins the server, if his IP
2015-09-20 13:41:06 +02:00
# is the same of the last time, and the timeout time
# hasn't expired, he will not need to authenticate.
2013-03-09 03:42:17 +01:00
enabled : false
2015-09-20 13:41:06 +02:00
# After how many minutes a session should expire?
# 0 for unlimited time (Very dangerous, use it at your own risk!)
# Consider that session will end only after the timeout time, and
# if the player's ip has changed but the timeout hasn't expired,
# player will be kicked out of sever due to invalidSession!
2013-03-09 03:42:17 +01:00
timeout : 10
2015-09-20 13:41:06 +02:00
# Should the session expire if the player try to login with an
# another IP Address?
sessionExpireOnIpChange : true
2013-03-09 03:42:17 +01:00
restrictions :
2015-10-12 15:49:19 +02:00
# Can not authenticated players chat and see the chat log?
2015-09-20 13:41:06 +02:00
# Care that this feature blocks also all the commands not
# listed in the list below.
2013-03-09 03:42:17 +01:00
allowChat : false
2015-09-20 13:41:06 +02:00
# Commands allowed when a player is not authenticated
2013-03-09 03:42:17 +01:00
allowCommands :
- /login
- /register
- /l
- /reg
- /email
- /captcha
2015-09-20 13:41:06 +02:00
# Max number of allowed registrations per IP (default: 1)
2013-03-09 03:42:17 +01:00
maxRegPerIp : 1
2015-09-20 13:41:06 +02:00
# Max allowed username length
2015-07-14 14:06:42 +02:00
maxNicknameLength : 16
2015-09-20 13:41:06 +02:00
# When this setting is enabled, online players can't be kicked out
# due to "Logged in from another Location"
# This setting will prevent potetial security exploits.
2013-03-09 03:42:17 +01:00
ForceSingleSession : true
2015-09-20 13:41:06 +02:00
# If enabled, every player will be teleported to the world spawnpoint
# after successful authentication.
# The quit location of the player will be overwritten.
# This is different from "teleportUnAuthedToSpawn" that teleport player
# back to his quit location after the authentication.
2013-03-09 03:42:17 +01:00
ForceSpawnLocOnJoinEnabled : false
2015-09-20 13:41:06 +02:00
# This option will save the quit location of the players.
2013-03-09 03:42:17 +01:00
SaveQuitLocation : false
2015-09-20 13:41:06 +02:00
# To activate the restricted user feature you need
# to enable this option and configure the
# AllowedRestrctedUser field.
2013-03-09 03:42:17 +01:00
AllowRestrictedUser : false
2015-09-20 13:41:06 +02:00
# The restricted user feature will kick players listed below
# if they dont match of the defined ip address.
# Example:
# AllowedRestrictedUser:
# - playername;127.0.0.1
2013-10-17 05:14:46 +02:00
AllowedRestrictedUser :
- playername;127.0.0.1
# Should unregistered players be kicked immediatly?
2013-03-09 03:42:17 +01:00
kickNonRegistered : false
2015-09-20 13:41:06 +02:00
# Should players be kicked on wrong password?
2013-03-09 03:42:17 +01:00
kickOnWrongPassword : false
2015-09-20 13:41:06 +02:00
# Should not logged in players be teleported to the spawn?
# After the authentication they will be teleported back to
# their normal position.
2013-03-09 03:42:17 +01:00
teleportUnAuthedToSpawn : false
2015-10-12 15:49:19 +02:00
# Minimum allowed nick length
2015-07-14 11:46:43 +02:00
minNicknameLength : 4
2013-10-17 05:14:46 +02:00
# Can unregistered players walk around?
2013-03-09 03:42:17 +01:00
allowMovement : false
2015-09-20 13:41:06 +02:00
# Should not authenticated players have speed = 0?
# This will reset the fly/walk speed to default value after the login.
removeSpeed : true
# After how many time players who fail to login or register
# should be kicked? Set to 0 to disable.
2013-03-09 03:42:17 +01:00
timeout : 30
2015-09-20 13:41:06 +02:00
# Regex sintax of allowed characters in the player name.
2014-04-01 10:32:27 +02:00
allowedNicknameCharacters : '[a-zA-Z0-9_]*'
2013-10-17 05:14:46 +02:00
# How far can unregistered players walk? Set to 0
# for unlimited radius
2013-03-09 03:42:17 +01:00
allowedMovementRadius : 100
2013-10-17 05:14:46 +02:00
# Enable double check of password when you register
# when it's true, registration require that kind of command:
# /register <password> <confirmPassword>
2013-03-09 03:42:17 +01:00
enablePasswordVerifier : true
2013-10-17 05:14:46 +02:00
# Should we protect the player inventory before logging in?
2013-03-09 03:42:17 +01:00
ProtectInventoryBeforeLogIn : true
2013-10-17 05:14:46 +02:00
# Should we display all other accounts from a player when he joins?
# permission: /authme.admin.accounts
2013-03-09 03:42:17 +01:00
displayOtherAccounts : true
2013-10-17 05:14:46 +02:00
# WorldNames where we need to force the spawn location for ForceSpawnLocOnJoinEnabled
2015-11-08 01:35:13 +01:00
# CASE SENSITIVE
2013-03-09 03:42:17 +01:00
ForceSpawnOnTheseWorlds :
- world
- world_nether
- world_the_end
2013-10-17 05:14:46 +02:00
# Ban ip when the ip is not the ip registered in database
2013-03-09 03:42:17 +01:00
banUnsafedIP : false
2014-03-08 00:16:14 +01:00
# Spawn Priority, Values : authme, essentials, multiverse, default
spawnPriority : authme,essentials,multiverse,default
# Maximum Login authorized by IP
maxLoginPerIp : 0
# Maximum Join authorized by IP
maxJoinPerIp : 0
2014-06-13 05:56:59 +02:00
# AuthMe will NEVER teleport players !
noTeleport : false
2014-07-25 01:32:21 +02:00
# Regex sintax for allowed Chars in passwords.
2015-07-05 03:50:41 +02:00
allowedPasswordCharacters : '[\x21-\x7E]*'
2013-03-09 03:42:17 +01:00
GameMode :
2013-10-17 05:14:46 +02:00
# ForceSurvivalMode to player when join ?
2013-03-09 03:42:17 +01:00
ForceSurvivalMode : false
2013-10-17 05:14:46 +02:00
# if player join with CreativeMode and ForceSurvivalMode: true
# inventory will be wipped
2013-03-09 03:42:17 +01:00
ResetInventoryIfCreative : false
2013-10-17 05:14:46 +02:00
# Do we need to force the survival mode ONLY after /login process ?
2013-09-15 04:27:23 +02:00
ForceOnlyAfterLogin : false
2013-03-09 03:42:17 +01:00
security :
2013-10-17 05:14:46 +02:00
# minimum Length of password
2015-07-14 11:46:43 +02:00
minPasswordLength : 5
2015-10-12 15:49:19 +02:00
# this is very important options,
2013-10-17 05:14:46 +02:00
# every time player join the server,
2015-10-12 15:49:19 +02:00
# if they are registered, AuthMe will switch him
2013-10-17 05:14:46 +02:00
# to unLoggedInGroup, this
2015-10-12 15:49:19 +02:00
# should prevent all major exploit.
2013-10-17 05:14:46 +02:00
# So you can set up on your Permission Plugin
2015-10-12 15:49:19 +02:00
# this special group with 0 permissions, or permissions to chat,
2013-10-17 05:14:46 +02:00
# or permission to
2015-10-12 15:49:19 +02:00
# send private message or all other perms that you want,
2013-10-17 05:14:46 +02:00
# the better way is to set up
# this group with few permissions,
# so if player try to exploit some account,
# they can
# do anything except what you set in perm Group.
2015-10-12 15:49:19 +02:00
# After a correct logged-in player will be
2013-10-17 05:14:46 +02:00
# moved to his correct permissions group!
2015-10-12 15:49:19 +02:00
# Pay attention group name is case sensitive,
# so Admin is different from admin,
# otherwise your group will be wiped,
2013-10-17 05:14:46 +02:00
# and player join in default group []!
# Example unLoggedinGroup: NotLogged
2013-03-09 03:42:17 +01:00
unLoggedinGroup : unLoggedinGroup
2013-10-17 05:14:46 +02:00
# possible values: MD5, SHA1, SHA256, WHIRLPOOL, XAUTH, MD5VB, PHPBB,
# PLAINTEXT ( unhashed password),
# MYBB, IPB3, PHPFUSION, SMF, XENFORO, SALTED2MD5, JOOMLA, BCRYPT, WBB3, SHA512,
2015-09-07 14:30:56 +02:00
# DOUBLEMD5, PBKDF2, PBKDF2DJANGO, WORDPRESS, ROYALAUTH, CUSTOM(for developpers only)
2013-03-09 03:42:17 +01:00
passwordHash : SHA256
2013-10-17 05:14:46 +02:00
# salt length for the SALTED2MD5 MD5(MD5(password)+salt)
2013-03-09 03:42:17 +01:00
doubleMD5SaltLength : 8
2013-10-17 05:14:46 +02:00
# If password checking return false , do we need to check with all
# other password algorithm to check an old password ?
# AuthMe will update the password to the new passwordHash !
supportOldPasswordHash : false
2014-01-27 20:33:34 +01:00
# Cancel unsafe passwords for being used, put them on lowercase!
#unsafePasswords:
#- '123456'
#- 'password'
2015-07-14 11:46:43 +02:00
unsafePasswords :
- '123456'
- 'password'
- 'qwerty'
- '12345'
- '54321'
2013-03-09 03:42:17 +01:00
registration :
2013-10-17 05:14:46 +02:00
# enable registration on the server?
2013-03-09 03:42:17 +01:00
enabled : true
2013-10-17 05:14:46 +02:00
# Send every X seconds a message to a player to
# remind him that he has to login/register
2013-03-09 03:42:17 +01:00
messageInterval : 5
2013-10-17 05:14:46 +02:00
# Only registered and logged in players can play.
# See restrictions for exceptions
2013-03-09 03:42:17 +01:00
force : true
2013-10-17 05:14:46 +02:00
# Does we replace password registration by an Email registration method ?
2013-03-09 03:42:17 +01:00
enableEmailRegistrationSystem : false
2013-10-17 05:14:46 +02:00
# Enable double check of email when you register
# when it's true, registration require that kind of command:
# /register <email> <confirmEmail>
2013-03-09 03:42:17 +01:00
doubleEmailCheck : false
2014-03-08 00:16:14 +01:00
# Do we force kicking player after a successful registration ?
# Do not use with login feature below
forceKickAfterRegister : false
# Does AuthMe need to enforce a /login after a successful registration ?
forceLoginAfterRegister : false
2013-03-09 03:42:17 +01:00
unrestrictions :
2013-10-17 05:14:46 +02:00
# below you can list all your account name, that
# AuthMe will ignore for registration or login, configure it
# at your own risk!! Remember that if you are going to add
# nickname with [], you have to delimit name with ' '.
# this option add compatibility with BuildCraft and some
# other mods.
# It is CaseSensitive!
2013-03-09 03:42:17 +01:00
UnrestrictedName : [ ]
2013-10-17 05:14:46 +02:00
# Message language, available : en, de, br, cz, pl, fr, ru, hu, sk, es, zhtw, fi, zhcn, lt, it, ko, pt
2013-03-09 03:42:17 +01:00
messagesLanguage : en
2014-01-27 20:33:34 +01:00
# Force these commands after /login, without any '/', use %p for replace with player name
2013-12-12 05:34:44 +01:00
forceCommands : [ ]
2014-04-01 17:10:33 +02:00
# Force these commands after /login as a server console, without any '/', use %p for replace with player name
forceCommandsAsConsole : [ ]
2014-08-27 06:14:49 +02:00
# Force these commands after /register, without any '/', use %p for replace with player name
forceRegisterCommands : [ ]
# Force these commands after /register as a server console, without any '/', use %p for replace with player name
forceRegisterCommandsAsConsole : [ ]
2014-01-27 20:33:34 +01:00
# Do we need to display the welcome message (welcome.txt) after a register or a login?
2015-10-12 15:49:19 +02:00
# You can use colors in this welcome.txt + some replaced strings :
2014-01-27 20:33:34 +01:00
# {PLAYER} : player name, {ONLINE} : display number of online players, {MAXPLAYERS} : display server slots,
# {IP} : player ip, {LOGINS} : number of players logged, {WORLD} : player current world, {SERVER} : server name
# {VERSION} : get current bukkit version, {COUNTRY} : player country
useWelcomeMessage : true
2014-01-31 17:56:36 +01:00
# Do we need to broadcast the welcome message to all server or only to the player? set true for server or false for player
broadcastWelcomeMessage : false
2015-11-01 13:23:47 +01:00
# Do we need to delay the join/leave message to be displayed only when the player is authenticated ?
delayJoinLeaveMessages : true
2014-07-25 02:06:56 +02:00
# Do we need to add potion effect Blinding before login/register ?
applyBlindEffect : false
2013-03-09 03:42:17 +01:00
ExternalBoardOptions :
2013-10-17 05:14:46 +02:00
# MySQL column for the salt , needed for some forum/cms support
2013-03-09 03:42:17 +01:00
mySQLColumnSalt : ''
2013-10-17 05:14:46 +02:00
# MySQL column for the group, needed for some forum/cms support
2013-03-09 03:42:17 +01:00
mySQLColumnGroup : ''
2013-10-17 05:14:46 +02:00
# -1 mean disabled. If u want that only
# activated player can login in your server
# u can put in this options the group number
# of unactivated user, needed for some forum/cms support
2013-03-09 03:42:17 +01:00
nonActivedUserGroup : -1
2014-01-27 20:33:34 +01:00
# Other MySQL columns where we need to put the Username (case sensitive)
2013-03-09 03:42:17 +01:00
mySQLOtherUsernameColumns : [ ]
2013-10-17 05:14:46 +02:00
# How much Log to Round needed in BCrypt(do not change it if you do not know what's your doing)
2013-06-20 02:15:27 +02:00
bCryptLog2Round : 10
2013-10-17 05:14:46 +02:00
# phpBB prefix defined during phpbb installation process
phpbbTablePrefix : 'phpbb_'
# phpBB activated group id , 2 is default registered group defined by phpbb
phpbbActivatedGroupId : 2
# WordPress prefix defined during WordPress installation process
wordpressTablePrefix : 'wp_'
2013-03-09 03:42:17 +01:00
permission :
2015-09-10 19:56:33 +02:00
# Take care with this options, if you dont want
2013-10-17 05:14:46 +02:00
# to use Vault and Group Switching of
2015-09-10 19:56:33 +02:00
# AuthMe for unloggedIn players put true
# below, default is false.
2013-03-09 03:42:17 +01:00
EnablePermissionCheck : false
BackupSystem :
2013-10-17 05:14:46 +02:00
# Enable or Disable Automatic Backup
2013-03-09 03:42:17 +01:00
ActivateBackup : false
2013-10-17 05:14:46 +02:00
# set Backup at every start of Server
2013-03-09 03:42:17 +01:00
OnServerStart : false
2013-10-17 05:14:46 +02:00
# set Backup at every stop of Server
2013-03-09 03:42:17 +01:00
OnServerStop : true
2013-10-17 05:14:46 +02:00
# Windows only mysql installation Path
2013-03-09 03:42:17 +01:00
MysqlWindowsPath : 'C:\\Program Files\\MySQL\\MySQL Server 5.1\\'
Security :
SQLProblem :
2013-10-17 05:14:46 +02:00
# Stop the server if we can't contact the sql database
# Take care with this, if you set that to false,
# AuthMe automatically disable and the server is not protected!
2013-03-09 03:42:17 +01:00
stopServer : true
ReloadCommand :
2013-10-17 05:14:46 +02:00
# /reload support
2013-03-09 03:42:17 +01:00
useReloadCommandSupport : true
console :
2013-10-17 05:14:46 +02:00
# Remove spam console
2013-03-09 03:42:17 +01:00
noConsoleSpam : false
2013-10-17 05:14:46 +02:00
# Replace passwords in the console when player type a command like /login
2013-03-09 03:42:17 +01:00
removePassword : true
captcha :
2013-10-17 05:14:46 +02:00
# Player need to put a captcha when he fails too lot the password
2013-03-09 03:42:17 +01:00
useCaptcha : false
2013-10-17 05:14:46 +02:00
# Max allowed tries before request a captcha
2013-03-09 03:42:17 +01:00
maxLoginTry : 5
2013-10-17 05:14:46 +02:00
# Captcha length
2013-03-09 03:42:17 +01:00
captchaLength : 5
Converter :
Rakamak :
2013-10-17 05:14:46 +02:00
# Rakamak file name
2013-03-09 03:42:17 +01:00
fileName : users.rak
2013-10-17 05:14:46 +02:00
# Rakamak use ip ?
2013-03-09 03:42:17 +01:00
useIP : false
2013-10-17 05:14:46 +02:00
# IP file name for rakamak
2013-03-09 03:42:17 +01:00
ipFileName : UsersIp.rak
2014-06-14 01:53:46 +02:00
CrazyLogin :
# CrazyLogin database file
fileName : accounts.db
2013-03-09 03:42:17 +01:00
Email :
2013-10-17 05:14:46 +02:00
# Email SMTP server host
2013-03-09 03:42:17 +01:00
mailSMTP : smtp.gmail.com
2013-10-17 05:14:46 +02:00
# Email SMTP server port
2013-03-09 03:42:17 +01:00
mailPort : 465
2013-10-17 05:14:46 +02:00
# Email account that send the mail
2013-03-09 03:42:17 +01:00
mailAccount : ''
2013-10-17 05:14:46 +02:00
# Email account password
2013-03-09 03:42:17 +01:00
mailPassword : ''
2013-10-17 05:14:46 +02:00
# Custom SenderName, that replace the mailAccount name in the email
2013-03-09 03:42:17 +01:00
mailSenderName : ''
2013-10-17 05:14:46 +02:00
# Random password length
2013-03-09 03:42:17 +01:00
RecoveryPasswordLength : 8
2013-10-17 05:14:46 +02:00
# Email subject of password get
2013-03-09 03:42:17 +01:00
mailSubject : 'Your new AuthMe Password'
2013-10-17 05:14:46 +02:00
# Email text here
2015-11-11 01:49:15 +01:00
mailText: 'Dear <playername>, <br /><br /> This is your new AuthMe password for the server <br /><br /> <servername> : <br /><br /> <generatedpass><br /><image><br />Do not forget to change password after login! <br /> /changepassword <generatedpass> newPassword'
2013-10-17 05:14:46 +02:00
# Like maxRegPerIp but with email
2013-03-09 03:42:17 +01:00
maxRegPerEmail : 1
2014-01-06 17:54:50 +01:00
# Recall players to add an email ?
recallPlayers : false
# Delay in minute for the recall scheduler
delayRecall : 5
2014-08-13 12:48:50 +02:00
# Blacklist these domains for emails
2014-08-06 18:03:32 +02:00
emailBlacklisted :
- 10minutemail.com
2014-08-13 12:48:50 +02:00
# WhiteList only these domains for emails
emailWhitelisted : [ ]
2015-10-16 17:03:34 +02:00
# Do we need to send new password draw in an image ?
generateImage : false
2013-03-09 03:42:17 +01:00
Hooks :
2013-10-17 05:14:46 +02:00
# Do we need to hook with multiverse for spawn checking?
2013-03-09 03:42:17 +01:00
multiverse : true
2013-10-17 05:14:46 +02:00
# Do we need to hook with BungeeCord for get the real Player ip ?
2013-03-09 03:42:17 +01:00
bungeecord : false
2013-10-17 05:14:46 +02:00
# Do we need to disable Essentials SocialSpy on join ?
2013-09-15 04:27:23 +02:00
disableSocialSpy : true
2013-10-17 05:14:46 +02:00
# Do we need to force /motd Essentials command on join ?
2013-09-15 04:27:23 +02:00
useEssentialsMotd : false
2015-05-26 13:11:10 +02:00
# Do we need to cache custom Attributes ?
customAttributes : false
2013-10-17 05:14:46 +02:00
Purge :
# On Enable , does AuthMe need to purge automatically old accounts unused ?
useAutoPurge : false
# Number of Days an account become Unused
daysBeforeRemovePlayer : 60
# Do we need to remove the player.dat file during purge process ?
removePlayerDat : false
2013-12-12 05:34:44 +01:00
# Do we need to remove the Essentials/users/player.yml file during purge process ?
2013-10-17 05:14:46 +02:00
removeEssentialsFile : false
# World where are players.dat stores
2013-12-12 05:34:44 +01:00
defaultWorld : 'world'
# Do we need to remove LimitedCreative/inventories/player.yml , player_creative.yml files during purge process ?
removeLimitedCreativesInventories : false
# Do we need to remove the AntiXRayData/PlayerData/player file during purge process ?
removeAntiXRayFile : false
2015-05-28 19:21:24 +02:00
# Do we need to remove permissions ?
removePermissions : false
2013-12-12 05:34:44 +01:00
Protection :
# Enable some servers protection ( country based login, antibot )
enableProtection : false
2014-01-27 20:33:34 +01:00
# Countries allowed to join the server and register, see http://dev.bukkit.org/bukkit-plugins/authme-reloaded/pages/countries-codes/ for countries' codes
2013-12-12 05:34:44 +01:00
countries :
- US
- GB
2014-01-27 20:33:34 +01:00
# Countries blacklisted automatically ( without any needed to enable protection )
countriesBlacklist :
- A1
2013-12-12 05:34:44 +01:00
# Do we need to enable automatic antibot system?
2015-07-14 14:06:42 +02:00
enableAntiBot : false
2013-12-12 05:34:44 +01:00
# Max number of player allowed to login in 5 secs before enable AntiBot system automatically
antiBotSensibility : 5
# Duration in minutes of the antibot automatic system
2014-04-01 10:32:27 +02:00
antiBotDuration : 10
VeryGames :
# These features are only available on VeryGames Server Provider
2015-07-05 03:50:41 +02:00
enableIpCheck : false