From ef505c0b73908ed1a8544656ea13661e7eddd279 Mon Sep 17 00:00:00 2001 From: Rafael dos Santos Silva Date: Mon, 15 Aug 2022 13:45:23 -0300 Subject: [PATCH] DEV: Declare new SMTP settings from 3a37a7f (#17932) Follow up to 3a37a7f where adding those new SMTP settings forgot to declare it in our defaults file. --- config/discourse_defaults.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/discourse_defaults.conf b/config/discourse_defaults.conf index 23e1669a83a..1007417f872 100644 --- a/config/discourse_defaults.conf +++ b/config/discourse_defaults.conf @@ -95,6 +95,12 @@ smtp_openssl_verify_mode = # force implicit TLS as per RFC 8314 3.3 smtp_force_tls = false +# number of seconds to wait while attempting to open a SMTP connection +smtp_open_timeout = 5 + +# Number of seconds to wait until timing-out a SMTP read(2) call +smtp_read_timeout = 5 + # load MiniProfiler in production, to be used by developers load_mini_profiler = true