I'm getting user email/password from users and storing them in a server(in mysql db)
I would like to implement a password recovery system.
When users forget password, they would request a temporary password to be sent to the email address.
I haven't used mail server and have no idea about what their capabilities are like.
General layout how to set this up would be enough for now.
I guessed how other similar systems work below.
In scenarios I guessed, I am utterly ignorant on how to tell the mail server to send email when I need to.(when user asks for password recovery)
scenario 1
1. client send password recovery request with his email-address
2. application server records the email-address and newly generated password in db
3. another server(maybe mail server?) application polls the db and sends email with the generated password.
scenario 2
1. client send email to mail server with his email-address
2. mail server parses the email and get the email-address and record the email-address/new password in db
3. sends to the email-address with generated password.
I'm looking at http://flurdy.com/docs/postfix/, having hard time what components are needed for me. Client is mobile device(iphone), server is linux based.