From 349ab612d655309b069d337ed3e6e441bcfbbe96 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Tue, 4 Aug 2026 21:10:30 -0400 Subject: [PATCH] change scopes --- auth/oauth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/oauth.go b/auth/oauth.go index 816eff7..f02bdc2 100644 --- a/auth/oauth.go +++ b/auth/oauth.go @@ -14,7 +14,7 @@ func CreateTestOAuth() { oauthConfig := oauth2.Config{ ClientID: "stalwart-webui", - Scopes: []string{"user:email", "read:user"}, + Scopes: []string{"openid", "profile", "email"}, Endpoint: oauthEndpoint, RedirectURL: "http://localhost:8080/callback", }