mirror of
https://github.com/discourse/discourse.git
synced 2024-11-21 23:42:47 +08:00
48d13cb231
Our old group SMTP SSL option was a checkbox, but this was not ideal because there are actually 3 different ways SSL can be used when sending SMTP: * None * SSL/TLS * STARTTLS We got around this before with specific overrides for Gmail, but it's not flexible enough and now people want to use other providers. It's best to be clear, though it is a technical detail. We provide a way to test the SMTP settings before saving them so there should be little chance of messing this up. This commit also converts GroupEmailSettings to a glimmer component.
13 lines
507 B
Ruby
13 lines
507 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SmtpProviderOverrides
|
|
# Ideally we (or net-smtp) would automatically detect the correct authentication
|
|
# method, but this is sufficient for our purposes because we know certain providers
|
|
# need certain authentication methods. This may need to change when we start to
|
|
# use XOAUTH2 for SMTP.
|
|
def self.authentication_override(host)
|
|
return "login" if %w[smtp.office365.com smtp-mail.outlook.com].include?(host)
|
|
GlobalSetting.smtp_authentication
|
|
end
|
|
end
|