From: Scott Baker Date: Fri, 29 Aug 2014 19:32:46 +0000 (-0700) Subject: HTTP_ORIGIN wasn't working on Firefox, changed it to get_host() instead X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=51e7d40824c31c634ea32d76a911360e3a7ee7cf;p=plstackapi.git HTTP_ORIGIN wasn't working on Firefox, changed it to get_host() instead --- diff --git a/planetstack/core/models/user.py b/planetstack/core/models/user.py index eec0927..6b5b061 100644 --- a/planetstack/core/models/user.py +++ b/planetstack/core/models/user.py @@ -182,7 +182,7 @@ class User(AbstractBaseUser): self.set_password(password) subject, from_email, to = 'OpenCloud Account Credentials', 'support@opencloud.us', str(self.email) text_content = 'This is an important message.' - userUrl=get_request().META['HTTP_ORIGIN'] + userUrl="http://%s/" % get_request().get_host() html_content = """

Your account has been created on OpenCloud. Please log in here to activate your account

Username: """+self.email+"""
Temporary Password: """+password+"""
Please change your password once you successully login into the site.

""" msg = EmailMultiAlternatives(subject,text_content, from_email, [to]) msg.attach_alternative(html_content, "text/html")