diff --git a/pkg/usrmgr/usrmgr.go b/pkg/usrmgr/usrmgr.go index 10fd3a058..880cd45d8 100644 --- a/pkg/usrmgr/usrmgr.go +++ b/pkg/usrmgr/usrmgr.go @@ -189,8 +189,9 @@ func (s Service) SignUp( } confirmationEmailUrl := url.URL{ - Host: s.hostname, - Path: "/confirm-email", + Scheme: "https", + Host: s.hostname, + Path: "/confirm-email", RawQuery: url.Values{ "token": []string{confirmationToken}, }.Encode(),