From 5c058fcaa84d57faeefcc3370879acdd8da3acf4 Mon Sep 17 00:00:00 2001 From: michel memeteau <mm@ekimia.fr> Date: Wed, 10 Oct 2018 18:46:17 +0200 Subject: [PATCH] Fix smtpname point to wrong variable MAIL_DOMAIN --- config/mail.config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.config.php b/config/mail.config.php index 3d60f63..6931de7 100644 --- a/config/mail.config.php +++ b/config/mail.config.php @@ -7,7 +7,7 @@ $CONFIG = array ( 'mail_smtpport' => getenv('MAIL_PORT'), 'mail_smtpauth' => 1, 'mail_smtpauthtype' => 'LOGIN', - 'mail_smtpname' => getenv('MAIL_DOMAIN'), + 'mail_smtpname' => getenv('SMTP_NAME'), 'mail_smtppassword' => getenv('MAIL_PASS'), 'mail_smtpsecure' => 'tls', ); -- GitLab