From 63e21c146aa3fda2715d55235d54dfb95a9077cc Mon Sep 17 00:00:00 2001 From: Zachery Hostens Date: Mon, 14 Mar 2016 09:40:16 -0500 Subject: ensure we don’t try changing LDAP passswords MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routers/user/auth.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'routers/user') diff --git a/routers/user/auth.go b/routers/user/auth.go index 3f37b09059..f42ad4f383 100644 --- a/routers/user/auth.go +++ b/routers/user/auth.go @@ -297,6 +297,12 @@ func ForgotPasswdPost(ctx *middleware.Context) { return } + if !u.IsLocal() { + ctx.Data["Err_Email"] = true + ctx.RenderWithErr(ctx.Tr("auth.non_local_account"), FORGOT_PASSWORD, nil) + return + } + if ctx.Cache.IsExist("MailResendLimit_" + u.LowerName) { ctx.Data["ResendLimited"] = true ctx.HTML(200, FORGOT_PASSWORD) -- cgit v1.2.3