I need to patch the standard User model of contrib.auth by ensuring the email field entry is unique:
contrib.auth
User._meta.fields[4].unique = True <
User._meta.fields[4].unique = True
One possible way to do this is to have a pre-save hook on the User object and reject the save of the email already exists in the table.