From 28eb671b59ccba2fd8e9c2bfb37a02c13be0398f Mon Sep 17 00:00:00 2001 From: Vadim Stepanov Date: Mon, 21 Aug 2023 15:23:58 +0100 Subject: [PATCH] Enable `FEATURE_INBOUND_EMAIL_ENABLED` by default (#2846) # What this PR does Sets `FEATURE_INBOUND_EMAIL_ENABLED` to `True` by default, so inbound email integration setup is consistent with the [docs](https://grafana.com/docs/oncall/latest/open-source/#inbound-email-setup). ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/2777 ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required) --- CHANGELOG.md | 1 + engine/settings/base.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b50fa49..bc18b177 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Changed HTTP Endpoint to Email for inbound email integrations ([#2816](https://github.com/grafana/oncall/issues/2816)) +- Enable inbound email feature flag by default by @vadimkerr ([#2846](https://github.com/grafana/oncall/pull/2846)) ## v1.3.25 (2023-08-18) diff --git a/engine/settings/base.py b/engine/settings/base.py index 851411f0..97396514 100644 --- a/engine/settings/base.py +++ b/engine/settings/base.py @@ -62,7 +62,7 @@ FEATURE_TELEGRAM_INTEGRATION_ENABLED = getenv_boolean("FEATURE_TELEGRAM_INTEGRAT FEATURE_EMAIL_INTEGRATION_ENABLED = getenv_boolean("FEATURE_EMAIL_INTEGRATION_ENABLED", default=True) FEATURE_SLACK_INTEGRATION_ENABLED = getenv_boolean("FEATURE_SLACK_INTEGRATION_ENABLED", default=True) FEATURE_MULTIREGION_ENABLED = getenv_boolean("FEATURE_MULTIREGION_ENABLED", default=False) -FEATURE_INBOUND_EMAIL_ENABLED = getenv_boolean("FEATURE_INBOUND_EMAIL_ENABLED", default=False) +FEATURE_INBOUND_EMAIL_ENABLED = getenv_boolean("FEATURE_INBOUND_EMAIL_ENABLED", default=True) FEATURE_PROMETHEUS_EXPORTER_ENABLED = getenv_boolean("FEATURE_PROMETHEUS_EXPORTER_ENABLED", default=False) FEATURE_GRAFANA_ALERTING_V2_ENABLED = getenv_boolean("FEATURE_GRAFANA_ALERTING_V2_ENABLED", default=False) GRAFANA_CLOUD_ONCALL_HEARTBEAT_ENABLED = getenv_boolean("GRAFANA_CLOUD_ONCALL_HEARTBEAT_ENABLED", default=True)