﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
17504	User.objects.create_user() wrong email domain part identification	fero	marw85	"According to http://tools.ietf.org/html/rfc3696#section-3 the ""@"" symbol can be part of the local part of an email address, so [https://code.djangoproject.com/browser/django/trunk/django/contrib/auth/models.py#L129 line 129 of contrib.auth.models] is bugged.

The unbelivable complex ;) patch is:
{{{
-    email_name, domain_part = email.strip().split('@', 1)
+    email_name, domain_part = email.strip().rsplit('@', 1)
}}}"	Bug	closed	contrib.auth	dev	Normal	fixed			Ready for checkin	1	0	0	0	1	0
