mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
Fix SMTP production defaults (#371)
This commit is contained in:
committed by
GitHub
parent
1aae8bc194
commit
24ef09c50e
@@ -77,7 +77,7 @@ Rails.application.configure do
|
||||
authentication: ENV.fetch("EMAIL_SMTP_AUTH", "plain"),
|
||||
enable_starttls_auto: ActiveModel::Type::Boolean.new.cast(ENV.fetch("EMAIL_SMTP_STARTTLS_AUTO", "true")),
|
||||
openssl_verify_mode: ENV["EMAIL_SMTP_OPENSSL_VERIFY_MODE"],
|
||||
tls: ActiveModel::Type::Boolean.new.cast(ENV.fetch("EMAIL_SMTP_TLS", "true")),
|
||||
tls: ActiveModel::Type::Boolean.new.cast(ENV.fetch("EMAIL_SMTP_TLS", "false")),
|
||||
}
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user