From 137e839a9106bf08f46d97ed487b56b8bef02cd7 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Sat, 25 Feb 2023 19:11:05 +0100 Subject: [PATCH] BUG config smtp mailer --- CHANGES.md | 2 ++ core/module/config/config.php | 2 +- core/module/config/view/network/network.php | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 018959b2..367b2622 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ ## Version 12.3.00 ### Améliorations : - Prise en charge PHP 8.2 +- Personnalisation de l'adresse d'envoi SMTP - Amélioration de la prise en charge des mises à jour en ligne. - Activation du bouton de mise à jour dans la barre d'administration lorsque le menu de configuration est ouvert est qu'une mise à jour en ligne est détectée. - Gestion des langues : @@ -15,6 +16,7 @@ - Mauvais affichage du script ou du CSS déclarés dans une page. - Choix de la langue dans TinyMCE et CodeMirror. - Mauvaise application des fontes dans l'administration du thème. +- Mauvais stockage de la configuration personnalisé SMTP. - Correction de petits bugs. ### Nouveautés : - Remplacement du sélecteur de date Flatpickr par le sélecteur HTML 5 qui autorise les formats suivants : date, time, week, month, datetime-local. diff --git a/core/module/config/config.php b/core/module/config/config.php index 4e547fa2..882b3ba0 100644 --- a/core/module/config/config.php +++ b/core/module/config/config.php @@ -458,7 +458,7 @@ class config extends common 'host' => $this->getInput('smtpHost', helper::FILTER_STRING_SHORT, $this->getInput('smtpEnable', helper::FILTER_BOOLEAN)), 'port' => $this->getInput('smtpPort', helper::FILTER_INT, $this->getInput('smtpEnable', helper::FILTER_BOOLEAN)), 'auth' => $this->getInput('smtpAuth', helper::FILTER_BOOLEAN), - 'secure' => $this->getInput('smtpSecure', helper::FILTER_BOOLEAN), + 'secure' => $this->getInput('smtpSecure', helper::FILTER_STRING_SHORT), 'username' => $this->getInput('smtpUsername', helper::FILTER_STRING_SHORT, $this->getInput('smtpAuth', helper::FILTER_BOOLEAN)), 'password' => helper::encrypt($this->getData(['config', 'smtp', 'username']), $this->getInput('smtpPassword', null, $this->getInput('smtpAuth', helper::FILTER_BOOLEAN))), 'from' => $this->getInput('smtpFrom', helper::FILTER_MAIL, true), diff --git a/core/module/config/view/network/network.php b/core/module/config/view/network/network.php index 9bc83afa..9fa9ae91 100644 --- a/core/module/config/view/network/network.php +++ b/core/module/config/view/network/network.php @@ -50,7 +50,7 @@
'Expéditeur', - 'placeholder' => 'no-reply@host.fr', + 'placeholder' => 'no-reply@host', 'value' => $this->getData(['config', 'smtp', 'from']), ]); ?>