Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
smtp
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
smtp
Merge requests
!39
Fix D11 test errors and other compatibility errors caused by project update bot.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix D11 test errors and other compatibility errors caused by project update bot.
issue/smtp-3434668:3434668-automated-drupal-11
into
8.x-1.x
Overview
0
Commits
1
Pipelines
2
Changes
4
Merged
Jakob P
requested to merge
issue/smtp-3434668:3434668-automated-drupal-11
into
8.x-1.x
9 months ago
Overview
0
Commits
1
Pipelines
2
Changes
4
Expand
Closes
#3434668
0
0
Merge request reports
Compare
8.x-1.x
version 1
8050eb4f
9 months ago
8.x-1.x (base)
and
latest version
latest version
8050eb4f
1 commit,
9 months ago
version 1
8050eb4f
1 commit,
9 months ago
4 files
+
16
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/ConnectionTester/ConnectionTester.php
+
1
−
1
Options
@@ -108,7 +108,7 @@ class ConnectionTester {
$smtp_enabled
=
$this
->
smtpConfig
->
get
(
'smtp_on'
);
// Check to see if MailSystem is enabled and is using SMTPMailSystem.
if
(
\Drupal
::
moduleHandler
()
->
moduleExists
(
'mailsystem'
))
{
if
(
\Drupal
::
moduleHandler
()
->
moduleExists
(
'mailsystem'
))
{
// @phpstan-ignore-line
$mailsystem_defaults
=
(
array
)
$this
->
configFactory
->
get
(
'mailsystem.settings'
)
->
get
(
'defaults'
);
$smtp_enabled
=
in_array
(
'SMTPMailSystem'
,
$mailsystem_defaults
);
}
Loading