mirror of
https://github.com/internetee/registry.git
synced 2025-07-20 17:55:55 +02:00
Added new smtp attribute for STARTTLS
This commit is contained in:
parent
2ec7e09ba5
commit
beb921d94a
2 changed files with 4 additions and 2 deletions
|
@ -61,12 +61,12 @@ module Registry
|
|||
config.action_mailer.smtp_settings = {
|
||||
address: ENV['smtp_address'],
|
||||
port: ENV['smtp_port'],
|
||||
enable_starttls_auto: true,
|
||||
enable_starttls_auto: ENV['smtp_enable_starttls_auto'],
|
||||
user_name: ENV['smtp_user_name'],
|
||||
password: ENV['smtp_password'],
|
||||
authentication: 'smtp_login',
|
||||
domain: ENV['smtp_domain'],
|
||||
openssl_verify_mode: ENV['smtp_openssl_verify_mode']
|
||||
openssl_verify_mode: ENV['smtp_openssl_verify_mode'],
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue