You can add this to one of your models.py to get a behaviour close to what you're describing:
from django.contrib.auth.models import User def user_save(self): if not self.password.startswith('sha1$'): self.set_password(self.password) super(User, self).save() User.save = user_save It'll break if another algorithm is used though, so you might want to be careful. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---