This is the SMTP settings I use in my app and i have no idea how to hide(encrypt) the password which is presented in this settings.

ActionMailer::Base.smtp_settings = {
  :tls =>true,
  :enable_starttls_auto =>true,
  :address => "smtp.gmail.com",
  :domain => "gmail.com",
  :user_name => "somename",
  #:password => "somepassword",
  :port => 587,
  :authentication => :plain
  }
link|improve this question

0% accept rate
feedback

1 Answer

Mybe this thread may help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.