diff options
author | Zettat123 <zettat123@gmail.com> | 2023-06-22 16:16:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 08:16:12 +0000 |
commit | a55ff0dd99439eb96151e64be38e0f14f6e723b7 (patch) | |
tree | d6aedf642eabb7a460e9ea25953800f17ab63458 /services/auth/source | |
parent | 93cd579269717934b2b8e72d6258b712c1675eaa (diff) | |
download | gitea-a55ff0dd99439eb96151e64be38e0f14f6e723b7.tar.gz gitea-a55ff0dd99439eb96151e64be38e0f14f6e723b7.zip |
Change default email domain for LDAP users (#25425)
Fixes #21169
Change `localhost` to `localhost.local`
Diffstat (limited to 'services/auth/source')
-rw-r--r-- | services/auth/source/ldap/source_authenticate.go | 2 | ||||
-rw-r--r-- | services/auth/source/ldap/source_sync.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/services/auth/source/ldap/source_authenticate.go b/services/auth/source/ldap/source_authenticate.go index 89e99b5e60..3f3219adb9 100644 --- a/services/auth/source/ldap/source_authenticate.go +++ b/services/auth/source/ldap/source_authenticate.go @@ -76,7 +76,7 @@ func (source *Source) Authenticate(user *user_model.User, userName, password str } if len(sr.Mail) == 0 { - sr.Mail = fmt.Sprintf("%s@localhost", sr.Username) + sr.Mail = fmt.Sprintf("%s@localhost.local", sr.Username) } user = &user_model.User{ diff --git a/services/auth/source/ldap/source_sync.go b/services/auth/source/ldap/source_sync.go index 3e0f47a37e..43ee32c84b 100644 --- a/services/auth/source/ldap/source_sync.go +++ b/services/auth/source/ldap/source_sync.go @@ -104,7 +104,7 @@ func (source *Source) Sync(ctx context.Context, updateExisting bool) error { } if len(su.Mail) == 0 { - su.Mail = fmt.Sprintf("%s@localhost", su.Username) + su.Mail = fmt.Sprintf("%s@localhost.local", su.Username) } fullName := composeFullName(su.Name, su.Surname, su.Username) |