diff --git a/server/presenters/env.js b/server/presenters/env.js index 5b33c5d2..4446d93c 100644 --- a/server/presenters/env.js +++ b/server/presenters/env.js @@ -17,8 +17,7 @@ export default function present(env: Object): Object { SLACK_APP_ID: env.SLACK_APP_ID, MAXIMUM_IMPORT_SIZE: env.MAXIMUM_IMPORT_SIZE || 1024 * 1000 * 5, SUBDOMAINS_ENABLED: env.SUBDOMAINS_ENABLED === "true", - EMAIL_ENABLED: - !!env.SMTP_USERNAME || env.NODE_ENV === "development", + EMAIL_ENABLED: !!env.SMTP_USERNAME || env.NODE_ENV === "development", GOOGLE_ANALYTICS_ID: env.GOOGLE_ANALYTICS_ID, RELEASE: env.SOURCE_COMMIT || env.SOURCE_VERSION || undefined, }; diff --git a/shared/i18n/locales/en_US/translation.json b/shared/i18n/locales/en_US/translation.json index b33fedec..a4b0357f 100644 --- a/shared/i18n/locales/en_US/translation.json +++ b/shared/i18n/locales/en_US/translation.json @@ -564,6 +564,7 @@ "Settings that impact the access, security, and content of your knowledge base.": "Settings that impact the access, security, and content of your knowledge base.", "Allow email authentication": "Allow email authentication", "When enabled, users can sign-in using their email address": "When enabled, users can sign-in using their email address", + "The server must have SMTP configured to enable this setting": "The server must have SMTP configured to enable this setting", "When enabled, documents can be shared publicly on the internet by any team member": "When enabled, documents can be shared publicly on the internet by any team member", "Rich service embeds": "Rich service embeds", "Links to supported services are shown as rich embeds within your documents": "Links to supported services are shown as rich embeds within your documents",