mirror of
https://github.com/internetee/registry.git
synced 2025-07-01 08:43:37 +02:00
Added more smtp settings into application-example.yml
This commit is contained in:
parent
beb921d94a
commit
762054e5f1
2 changed files with 14 additions and 10 deletions
|
@ -59,14 +59,14 @@ module Registry
|
|||
config.action_mailer.raise_delivery_errors = true
|
||||
|
||||
config.action_mailer.smtp_settings = {
|
||||
address: ENV['smtp_address'],
|
||||
port: ENV['smtp_port'],
|
||||
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'],
|
||||
address: ENV['smtp_address'],
|
||||
port: ENV['smtp_port'],
|
||||
enable_starttls_auto: ENV['smtp_enable_starttls_auto'] == 'true',
|
||||
user_name: ENV['smtp_user_name'],
|
||||
password: ENV['smtp_password'],
|
||||
authentication: ENV['smtp_authentication'],
|
||||
domain: ENV['smtp_domain'],
|
||||
openssl_verify_mode: ENV['smtp_openssl_verify_mode'],
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue