From b82ae987efd4896806d0012bc110ffd7a3cb7bf2 Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti Date: Wed, 8 May 2019 11:28:57 +0530 Subject: [PATCH] digest: Enable server level setting for sending digest emails. --- zproject/settings.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/zproject/settings.py b/zproject/settings.py index 68fc8b59fd..abccb0bd3f 100644 --- a/zproject/settings.py +++ b/zproject/settings.py @@ -431,9 +431,8 @@ DEFAULT_SETTINGS.update({ # because some transactional email providers reject sending such # emails since they can look like spam. 'SEND_MISSED_MESSAGE_EMAILS_AS_USER': False, - # Whether to send periodic digests of activity. Off by default - # because this feature is in beta. - 'SEND_DIGEST_EMAILS': False, + # Whether to send periodic digests of activity. + 'SEND_DIGEST_EMAILS': True, # Used to change the Zulip logo in portico pages. 'CUSTOM_LOGO_URL': None,