From 189463d604d914d089c085c69ca4290c929e7af2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 13 Jun 2024 15:19:42 +0200 Subject: [PATCH] Update local.config.php --- conf/local.config.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/conf/local.config.php b/conf/local.config.php index 12b082a..6956136 100644 --- a/conf/local.config.php +++ b/conf/local.config.php @@ -44,4 +44,22 @@ return [ ], ], ], + 'mail' => [ + 'transport' => [ + 'type' => 'smtp', + 'options' => [ + 'name' => 'localhost', + 'host' => '127.0.0.1', + 'port' => 25, // 465 for 'ssl', and 587 for 'tls' + 'connection_class' => 'smtp', // 'plain', 'login', or 'crammd5' + 'connection_config' => [ + 'username' => null, + 'password' => null, + 'ssl' => null, // 'ssl' or 'tls' + 'use_complete_quit' => true, + ], + ], + ], + ], + ];