summaryrefslogtreecommitdiffstats
path: root/services/auth/source/pam/source_authenticate.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2021-08-12 08:26:33 +0100
committerGitHub <noreply@github.com>2021-08-12 10:26:33 +0300
commit162c32af7ec9cc434895079cfc7bfc683feb4d4c (patch)
tree5110a77931917910e4a92b92705a185891a0ff83 /services/auth/source/pam/source_authenticate.go
parente29e1637370ad95e4ca9f861c25d366b74829dcc (diff)
downloadgitea-162c32af7ec9cc434895079cfc7bfc683feb4d4c.tar.gz
gitea-162c32af7ec9cc434895079cfc7bfc683feb4d4c.zip
Send registration email on user autoregistration (#16523)
When users login and are autoregistered send email notification. Fix #16178 * Protect public functions within the mailer by testing if the mailer is configured Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'services/auth/source/pam/source_authenticate.go')
-rw-r--r--services/auth/source/pam/source_authenticate.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/services/auth/source/pam/source_authenticate.go b/services/auth/source/pam/source_authenticate.go
index 6ca0642904..8241aed725 100644
--- a/services/auth/source/pam/source_authenticate.go
+++ b/services/auth/source/pam/source_authenticate.go
@@ -11,6 +11,7 @@ import (
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/auth/pam"
"code.gitea.io/gitea/modules/setting"
+ "code.gitea.io/gitea/services/mailer"
"github.com/google/uuid"
)
@@ -58,5 +59,12 @@ func (source *Source) Authenticate(user *models.User, login, password string) (*
LoginName: login, // This is what the user typed in
IsActive: true,
}
- return user, models.CreateUser(user)
+
+ if err := models.CreateUser(user); err != nil {
+ return user, err
+ }
+
+ mailer.SendRegisterNotifyMail(user)
+
+ return user, nil
}