2
0

Fix SMTP configuration with mail 2.9.0 (#36646)

This commit is contained in:
Claire
2025-10-30 12:21:32 +01:00
parent 2a9c7d2b9e
commit e4291e9b05
3 changed files with 38 additions and 23 deletions

View File

@@ -27,6 +27,7 @@ RSpec.describe UserMailer do
address: 'localhost',
port: 25,
authentication: 'none',
enable_starttls_auto: true,
}
end
@@ -44,8 +45,7 @@ RSpec.describe UserMailer do
address: 'localhost',
port: 25,
authentication: nil,
enable_starttls: nil,
enable_starttls_auto: true,
enable_starttls: :auto,
})
end
end