From ba82e9ffc4ae0fdef3bfd8cc8d571f9e720e89d7 Mon Sep 17 00:00:00 2001 From: Jens Willmer Date: Tue, 7 May 2019 09:48:38 +0200 Subject: [PATCH] Fix: 'mail.enable-replies' type Excpetion: 'mail.enable-replies': got , expected boolean --- sentry.conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry.conf.py b/sentry.conf.py index 1fb457a..9b199c5 100644 --- a/sentry.conf.py +++ b/sentry.conf.py @@ -281,7 +281,7 @@ ENV_CONFIG_MAPPING = { 'SENTRY_EMAIL_USE_TLS': ('mail.use-tls', Bool), 'SENTRY_EMAIL_HOST': 'mail.host', 'SENTRY_SERVER_EMAIL': 'mail.from', - 'SENTRY_ENABLE_EMAIL_REPLIES': 'mail.enable-replies', + 'SENTRY_ENABLE_EMAIL_REPLIES': ('mail.enable-replies', Bool), 'SENTRY_SMTP_HOSTNAME': 'mail.reply-hostname', 'SENTRY_SECRET_KEY': 'system.secret-key',