From 244232989546381ec48868c5f2e43007f70768dc Mon Sep 17 00:00:00 2001 From: ErickSkrauch Date: Mon, 2 Dec 2024 14:23:43 +0100 Subject: [PATCH] Fixes ACCOUNTS-BH. Fix port param type --- common/config/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config/config.php b/common/config/config.php index b45d292..e7b8e2c 100644 --- a/common/config/config.php +++ b/common/config/config.php @@ -63,7 +63,7 @@ return [ 'host' => getenv('SMTP_HOST'), 'username' => getenv('SMTP_USER'), 'password' => getenv('SMTP_PASS'), - 'port' => getenv('SMTP_PORT') ?: 587, + 'port' => (int)(getenv('SMTP_PORT') ?: 587), 'encryption' => getenv('SMTP_ENCRYPTION') ?: 'tls', ], ],