From 78bceaaf43925975d767ba179f4d472023669af7 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Mon, 11 Nov 2024 14:43:26 +0100 Subject: [PATCH] phone-home 'EMAIL_BACKEND' (a signal about production-use) --- phonehome/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/phonehome/tasks.py b/phonehome/tasks.py index 8cbd37f..fcaf2a1 100644 --- a/phonehome/tasks.py +++ b/phonehome/tasks.py @@ -90,6 +90,7 @@ def _make_message_body(): # Settings that tell us how production-like your usage is. "SINGLE_USER": get_settings().SINGLE_USER, "SINGLE_TEAM": get_settings().SINGLE_TEAM, + "EMAIL_BACKEND": settings.EMAIL_BACKEND, # As it stands, the 2 settings below are not used to determine production-like-ness; left here for reference # "USER_REGISTRATION": get_settings().USER_REGISTRATION, # "TEAM_CREATION": get_settings().TEAM_CREATION,