From 19f13fa83f0f4c028f8ef0effddc26e11a4903db Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Mon, 14 Jul 2025 15:04:11 +0200 Subject: [PATCH] [mailman3] Remove non working authentication options https://pagure.io/fedora-infrastructure/issue/12653 --- roles/mailman3/templates/settings.py.j2 | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/roles/mailman3/templates/settings.py.j2 b/roles/mailman3/templates/settings.py.j2 index 16fff6ea9e..2684715d86 100644 --- a/roles/mailman3/templates/settings.py.j2 +++ b/roles/mailman3/templates/settings.py.j2 @@ -233,33 +233,10 @@ SOCIALACCOUNT_PROVIDERS = { "server_url": "{{ mailman3_openidc_server_url }}", "token_auth_method": "client_secret_post", }, - 'openid': { - 'SERVERS': [ - dict(id='yahoo', - name='Yahoo', - openid_url='http://me.yahoo.com'), - ], - }, 'google': { 'SCOPE': ['profile', 'email'], 'AUTH_PARAMS': {'access_type': 'online'}, }, - 'facebook': { - 'METHOD': 'oauth2', - 'SCOPE': ['email'], - 'FIELDS': [ - 'email', - 'name', - 'first_name', - 'last_name', - 'locale', - 'timezone', - ], - 'VERSION': 'v2.4', - }, - 'stackexchange': { - 'SITE': 'stackoverflow', - }, }