Hi, I have situation where ,once I recive Email ids from users i have autogenerate password and mail to them.
I can insert this info to my local user_auth table. I can add it in local user_auth table like below password="password" db.auth_user.insert(first_name="autotest",last_name="autotest",email="[email protected]",password=CRYPT(auth.settings.hmac_key) (password)[0]) but to authenticate user i have to insert it into user_auth table of CAS from my local app. I am trying but not succeeded yet. How to do this? Please help.. Thanks Sagar

