Do I need to set 'Application Specific Password ' to rails configuration file below?
config.action_mailer.default_url_options = {:host => "localhost", :port => 3000}
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.zoho.com",
:port => 587,
:password => "my_password",
:authentication => :plain,
:tls => true
:enable_starttls_auto => true,
}