trying making the port an int

This commit is contained in:
ilya 2010-10-07 15:05:52 -07:00
parent 058da8ebf6
commit 43600905dc

View file

@ -7,7 +7,7 @@ Diaspora::Application.configure do
config.action_mailer.default_url_options = {:host => APP_CONFIG[:terse_pod_url]}
config.action_mailer.smtp_settings = {
:address => APP_CONFIG[:smtp_address],
:port => APP_CONFIG[:smtp_port],
:port => APP_CONFIG[:smtp_port].to_i,
:domain => APP_CONFIG[:smtp_domain],
:authentication => APP_CONFIG[:smtp_authentication],
:user_name => APP_CONFIG[:smtp_username],