Hello, django-registration 0.8 give a traceback if email verification is turned on. A requirement for v0.7 is not in requirements.txt Using v0.7 a traceback does not occur; however, there is no message telling the use a verification email has been sent, although an email is sent, and clicking the link in the email does complete registration. The patch in ticket #1028 reports it fixes this issue? Why was the patch backed out?
I think using a captcha, possibly reCAPTCHA is better than email verification A possible solution is here: http://www.marcofucci.com/tumblelog/26/jul/2009/integrating-recaptcha-with-django/#comment-262 Has anyone done this? Does it work with the current version of django- registration? (0.8 Alpha 1) If it's good, possibly it should be incorporated into Satchmo. I'll try this when I get the time. >From tip: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ satchmo_store/accounts/forms.py ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 107 # TODO: 108 # In django-registration trunk this signature has changed. 109 # Satchmo is going to stick with the latest release so I'm changing 110 # this to work with 0.7 111 # When 0.8 comes out we're going to have to refactor to this: 112 #user = RegistrationProfile.objects.create_inactive_user( 113 # username, email, password, site) 114 # See ticket #1028 where we checked in the above line prematurely ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -samovar -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
