diff options
Diffstat (limited to 'OpenSim/Services/LLLoginService/LLLoginService.cs')
-rw-r--r-- | OpenSim/Services/LLLoginService/LLLoginService.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 6fec276..d8a2054 100644 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs | |||
@@ -129,7 +129,8 @@ namespace OpenSim.Services.LLLoginService | |||
129 | Object[] args = new Object[] { config }; | 129 | Object[] args = new Object[] { config }; |
130 | m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args); | 130 | m_UserAccountService = ServerUtils.LoadPlugin<IUserAccountService>(accountService, args); |
131 | m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args); | 131 | m_GridUserService = ServerUtils.LoadPlugin<IGridUserService>(gridUserService, args); |
132 | m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authService, args); | 132 | Object[] authArgs = new Object[] { config, m_UserAccountService }; |
133 | m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authService, authArgs); | ||
133 | m_InventoryService = ServerUtils.LoadPlugin<IInventoryService>(invService, args); | 134 | m_InventoryService = ServerUtils.LoadPlugin<IInventoryService>(invService, args); |
134 | 135 | ||
135 | if (gridService != string.Empty) | 136 | if (gridService != string.Empty) |
@@ -272,6 +273,12 @@ namespace OpenSim.Services.LLLoginService | |||
272 | return LLFailedLoginResponse.UserProblem; | 273 | return LLFailedLoginResponse.UserProblem; |
273 | } | 274 | } |
274 | 275 | ||
276 | if (account.UserLevel < 0) | ||
277 | { | ||
278 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: Unverified account"); | ||
279 | return LLFailedLoginResponse.UnverifiedAccountProblem; | ||
280 | } | ||
281 | |||
275 | if (account.UserLevel < m_MinLoginLevel) | 282 | if (account.UserLevel < m_MinLoginLevel) |
276 | { | 283 | { |
277 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); | 284 | m_log.InfoFormat("[LLOGIN SERVICE]: Login failed, reason: login is blocked for user level {0}", account.UserLevel); |