Re: Password Auto-reset and Expiry Policy (every X Months)

2011-04-13 Thread gkuenning
On Apr 12, 6:47 am, Harish Tejwani wrote: > What would be the best module or app that can support > > a) User's Password expiring every 6 months, so they are forced to > change it Although Django supports it, I would STRONGLY discourage you from implementing such a policy.

Re: Password Auto-reset and Expiry Policy (every X Months)

2011-04-13 Thread gladys
Django's auth module will do just fine. You can store other information, such as 'date_password_modified' in a model (UserProfile perhaps) which has a one-to-one correspondence with User. Then you need to override the login view to check the validity of the password based on this field. Now to

Password Auto-reset and Expiry Policy (every X Months)

2011-04-11 Thread Harish Tejwani
What would be the best module or app that can support a) User's Password expiring every 6 months, so they are forced to change it b) For new user's that get system generated passwords, and are forced to change at FIRST login Any ideas/suggestions would help how to go about implementing this