From 5f4b6e7ea481c0ba7845bcfff834479ff4b98113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Tue, 6 Jan 2026 19:25:33 +0100 Subject: [PATCH] Set default SMTP value to true (#16967) As per title. Will make it easier for self-hosters. @Weiko fyi --- .../src/engine/core-modules/twenty-config/config-variables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts b/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts index b441b023a8..becb237a22 100644 --- a/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts +++ b/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts @@ -157,7 +157,7 @@ export class ConfigVariables { description: 'Enable or disable the IMAP messaging integration', type: ConfigVariableType.BOOLEAN, }) - IS_IMAP_SMTP_CALDAV_ENABLED = false; + IS_IMAP_SMTP_CALDAV_ENABLED = true; @ConfigVariablesMetadata({ group: ConfigVariablesGroup.MICROSOFT_AUTH,