I would like to offer ob users of my web application the ability to send emails using our smtp server.
The password for user accounts is md5-hased, and the smtp server is a hash of the received values ββto verify that the username and password are correctly identified.
Now I am looking for a good way to configure Zend_Mail_Transport_Smtp. I explicitly need a plaintext password and forward it to the SMTP server, which then converts it to an md5 hash. But this means that I have to store the user's password somewhere in clear text, which I would like to avoid.
Are there any recommendations for setting up a web admin using the zend framework?
The only idea I had was to keep an unmanaged password in the session (the user accounts in my application are connected to the mail server accounts), but there should be a better way to handle this situation.
source share