my app is finally working but before i deploy it i wanted to hide my username and password, using figaro and in my application.yml i have pusher_smtp_username: “seekpeace” pusher_smtp_password: “password” but in my config/environments/development.rb file i have `config.action_mailer.smtp_settings = { :user_name => ENV['pusher_smtp_username'], :password => ENV['pusher_smtp_password’], and it takes the username fine but fails on the password as i have changed the username and password to the actual string to see where it was failing. i get authent fail.
my app is finally working but before i deploy it i wanted to hide my username and password, using figaro and in my application.yml i have
pusher_smtp_username: “seekpeace” pusher_smtp_password: “password”
but in my config/environments/development.rb file i have`config.action_mailer.smtp_settings = { :user_name => ENV['pusher_smtp_username'], :password => ENV['pusher_smtp_password’],
and it takes the username fine but fails on the password as i have changed the username and password to the actual string to see where it was failing. i get authent fail.