From 283d30b422355df31012edcea58c1059089c6e16 Mon Sep 17 00:00:00 2001 From: rock Date: Tue, 15 Sep 2026 02:30:12 +0900 Subject: [PATCH] fix(paperless): use correct env var PAPERLESS_SOCIAL_AUTO_SIGNUP for auto-linking The correct env var is PAPERLESS_SOCIAL_AUTO_SIGNUP not PAPERLESS_SOCIALACCOUNT_AUTO_SIGNUP This enables automatic linking of Authentik social accounts to existing Paperless users --- k8s/apps/paperless/configmap.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/k8s/apps/paperless/configmap.yaml b/k8s/apps/paperless/configmap.yaml index 94ffbbb..3ef8891 100644 --- a/k8s/apps/paperless/configmap.yaml +++ b/k8s/apps/paperless/configmap.yaml @@ -21,9 +21,6 @@ data: # on 'account_confirm_email' without this. PAPERLESS_ACCOUNT_EMAIL_VERIFICATION: "none" # Auto-connect social accounts to existing users with matching email - PAPERLESS_SOCIALACCOUNT_AUTO_SIGNUP: "true" + PAPERLESS_SOCIAL_AUTO_SIGNUP: "true" # Allow automatic linking of social accounts to existing users PAPERLESS_ACCOUNT_ALLOW_SIGNUPS: "true" - # Connect social accounts to existing users with matching email - PAPERLESS_SOCIALACCOUNT_EMAIL_AUTHENTICATION: "true" - PAPERLESS_SOCIALACCOUNT_EMAIL_AUTHENTICATION_AUTO_CONNECT: "true"