Use symbols instead of strings for SMTP settings
ActionMailer does differenciate between symbols and strings, and the code stringifying keys comes from an early version which we forgot to remove.
This commit is contained in:
@@ -32,15 +32,15 @@ test:
|
||||
staging:
|
||||
secret_key_base: ""
|
||||
server_name: ""
|
||||
# mailer_delivery_method: "smtp"
|
||||
# mailer_delivery_method: :smtp
|
||||
# smtp_settings:
|
||||
# address: "smtp.example.com"
|
||||
# port: 25
|
||||
# domain: "your_domain.com"
|
||||
# user_name: "<username>"
|
||||
# password: "<password>"
|
||||
# authentication: "plain"
|
||||
# enable_starttls_auto: true
|
||||
# :address: "smtp.example.com"
|
||||
# :port: 25
|
||||
# :domain: "your_domain.com"
|
||||
# :user_name: "<username>"
|
||||
# :password: "<password>"
|
||||
# :authentication: "plain"
|
||||
# :enable_starttls_auto: true
|
||||
force_ssl: true
|
||||
delay_jobs: true
|
||||
rollbar_server_token: ""
|
||||
@@ -55,15 +55,15 @@ staging:
|
||||
preproduction:
|
||||
secret_key_base: ""
|
||||
server_name: ""
|
||||
# mailer_delivery_method: "smtp"
|
||||
# mailer_delivery_method: :smtp
|
||||
# smtp_settings:
|
||||
# address: "smtp.example.com"
|
||||
# port: 25
|
||||
# domain: "your_domain.com"
|
||||
# user_name: "<username>"
|
||||
# password: "<password>"
|
||||
# authentication: "plain"
|
||||
# enable_starttls_auto: true
|
||||
# :address: "smtp.example.com"
|
||||
# :port: 25
|
||||
# :domain: "your_domain.com"
|
||||
# :user_name: "<username>"
|
||||
# :password: "<password>"
|
||||
# :authentication: "plain"
|
||||
# :enable_starttls_auto: true
|
||||
force_ssl: true
|
||||
delay_jobs: true
|
||||
rollbar_server_token: ""
|
||||
@@ -83,15 +83,15 @@ preproduction:
|
||||
production:
|
||||
secret_key_base: ""
|
||||
server_name: ""
|
||||
# mailer_delivery_method: "smtp"
|
||||
# mailer_delivery_method: :smtp
|
||||
# smtp_settings:
|
||||
# address: "smtp.example.com"
|
||||
# port: 25
|
||||
# domain: "your_domain.com"
|
||||
# user_name: "<username>"
|
||||
# password: "<password>"
|
||||
# authentication: "plain"
|
||||
# enable_starttls_auto: true
|
||||
# :address: "smtp.example.com"
|
||||
# :port: 25
|
||||
# :domain: "your_domain.com"
|
||||
# :user_name: "<username>"
|
||||
# :password: "<password>"
|
||||
# :authentication: "plain"
|
||||
# :enable_starttls_auto: true
|
||||
force_ssl: true
|
||||
delay_jobs: true
|
||||
rollbar_server_token: ""
|
||||
|
||||
Reference in New Issue
Block a user