From c5d5bb80671db135e6b503f53684771c7272e05d Mon Sep 17 00:00:00 2001 From: slawkens Date: Sat, 18 Jan 2025 16:18:47 +0100 Subject: [PATCH] Adjust mailer settings to latest gmail --- system/settings.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/system/settings.php b/system/settings.php index 0d447c0f..5f899961 100644 --- a/system/settings.php +++ b/system/settings.php @@ -509,7 +509,7 @@ Sent by MyAAC,
'smtp_port' => [ 'name' => 'SMTP Host', 'type' => 'number', - 'desc' => '25 (default) / 465 (ssl, GMail) / 587 (tls, Microsoft Outlook)', + 'desc' => '25 (default) / 587 (tls - GMail, Microsoft Outlook)', 'default' => 25, 'show_if' => [ 'mail_enabled', '=', 'true' @@ -536,7 +536,8 @@ Sent by MyAAC,
'smtp_pass' => [ 'name' => 'SMTP Password', 'type' => 'password', - 'desc' => 'Here your email password to authenticate with SMTP', + 'desc' => 'Here your email password to authenticate with SMTP.' . PHP_EOL + . 'For GMail use generated App password - https://myaccount.google.com/apppasswords.', 'default' => '', 'show_if' => [ 'mail_enabled', '=', 'true' @@ -546,7 +547,8 @@ Sent by MyAAC,
'name' => 'SMTP Security', 'type' => 'options', 'options' => ['None', 'SSL', 'TLS'], - 'desc' => 'What kind of encryption to use on the SMTP connection', + 'desc' => 'What kind of encryption to use on the SMTP connection.' . PHP_EOL + . '(Gmail, Outlook - tls).', 'default' => 0, 'show_if' => [ 'mail_enabled', '=', 'true'