Skip to content

Commit

Permalink
Adjust mailer settings to latest gmail
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Jan 18, 2025
1 parent e85ce19 commit c5d5bb8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions system/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@
'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'
Expand All @@ -536,7 +536,8 @@
'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'
Expand All @@ -546,7 +547,8 @@
'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'
Expand Down

0 comments on commit c5d5bb8

Please sign in to comment.