Does anyone know how to store passwords securely?
I mean, we enter DB usr/pwd in the database.yml and the actionmailer
email usr/pwds in environment.rb
which i think is not safe, considering while development the code is
visible to all developers.
Do we have some mechanism to store all passwords in one place and
encrypt them and securely access through the system?
Thanks,
Pratik
--
You received this message because you are subscribed to the Google Groups "Saint Louis Ruby Users Group" group.
To post to this group, send email to stl...@googlegroups.com.
To unsubscribe from this group, send email to stlruby+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/stlruby?hl=en.
As for other passwords (mail configs, etc), I don't have a great
solution. You could use acts_as_secure and store them encrypted in
the DB, or look into an encrypted filesystem.. or, depending on your
control of your mail server, just configure it to only accept mail
from the IP where your app runs (or some similar mail server config).
-Pratik