From 2a6a467609e161771623a09d14009436b2d4a292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:54:48 +0100 Subject: [PATCH] Update config.local.php --- conf/config.local.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/conf/config.local.php b/conf/config.local.php index 238e31f..184c4b5 100644 --- a/conf/config.local.php +++ b/conf/config.local.php @@ -411,7 +411,7 @@ const USE_CRON = true; * Défaut : false */ -//const SMTP_HOST = true; +const SMTP_HOST = true; /** * Port du serveur SMTP @@ -422,7 +422,7 @@ const USE_CRON = true; * Défaut : 587 */ -//const SMTP_PORT = 25; +const SMTP_PORT = 25; /** * Login utilisateur pour le server SMTP @@ -432,7 +432,7 @@ const USE_CRON = true; * Défaut : null */ -//const SMTP_USER = ''; +const SMTP_USER = '__APP__'; /** * Mot de passe pour le serveur SMTP @@ -442,7 +442,7 @@ const USE_CRON = true; * Défaut : null */ -//const SMTP_PASSWORD = ''; +const SMTP_PASSWORD = '__MAIL_PWD__'; /** * Sécurité du serveur SMTP @@ -455,7 +455,7 @@ const USE_CRON = true; * Défaut : STARTTLS */ -//const SMTP_SECURITY = 'NONE'; +const SMTP_SECURITY = 'NONE'; /** * Nom du serveur utilisé dans le HELO SMTP @@ -484,7 +484,7 @@ const SMTP_HELO_HOSTNAME = '__DOMAIN__'; * Défaut : null */ -//const MAIL_RETURN_PATH = 'returns@__DOMAIN__'; +const MAIL_RETURN_PATH = 'returns@__DOMAIN__'; /**