Hi Anderson -- First, I need to point out something:
On Fri, Feb 8, 2013 at 2:07 PM, Anderson <andersondbor...@gmail.com> wrote: > 'password': > u'pbkdf2_sha256$10000$ObXZ2yN3HATp$3ADUPZrzdvQCkPdJPCakfzILAIF8lPbKgAZLiXm54UI=', You just posted a password -- yours or one of your users -- on a public mailing list. PLEASE RESET THIS PASSWORD IMMEDIATELY. Also if this "activation_key" is anything sensitive, you should scrub it right away. Django uses a one-way hashing algorithm that partially protects you against leaking passwords, but given enough time an attacker could reverse what you just posted. So once again, you need to reset that password immediately. If it's a password you use elsewhere, you should reset it everywhere you use it. If it's one of your users' passwords, you should notify them immediately. Sorry if this comes across as harsh, but the consequences here are potentially disastrous, and I want to make sure you get the severity and respond immediately. Now, as to the issue at hand: I think the answer depends on what version of Django you're using: * If this is 1.4, this is probably "correct" at least according to what Django thinks. When you subclass User you're actually creating a relationship, not a subclassed model, so Django's only serializing the local fields on your subclass, not following the relationship. * If this is 1.5, and you're trying to create a custom User model, you'll want to subclass AbstractBaseUser instead of User; see https://docs.djangoproject.com/en/dev/topics/auth/customizing/#substituting-a-custom-user-model for more details. Thanks, and again - sorry to be harsh on the security stuff. But it's important! Jacob -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.