]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/forms/auth.py
Resolves OSQA-704, try to recreate the SMTP connection after exception has occurred.
[osqa.git] / forum / forms / auth.py
index c1a7c0914f6d5d05372f079247222d43ade4feaa..9bf2d671e40bbf7e2158e01145c2382066be73c2 100644 (file)
@@ -1,6 +1,5 @@
 from general import NextUrlField,  UserNameField,  UserEmailField, SetPasswordForm
 from forum.models import Question, User
-from forum.settings import INITIAL_EMAIL_SUBSCRIBE_OPTION
 from django.contrib.contenttypes.models import ContentType
 from django.utils.translation import ugettext as _
 from django.utils.safestring import mark_safe
@@ -35,17 +34,6 @@ class TemporaryLoginRequestForm(forms.Form):
         self.user_cache = users
         return self.cleaned_data['email']
 
-
-class SimpleEmailSubscribeForm(forms.Form):
-    SIMPLE_SUBSCRIBE_CHOICES = (
-        ('y',_('okay, let\'s try!')),
-        ('n',_('no OSQA community email please, thanks'))
-    )
-    subscribe = forms.ChoiceField(widget=forms.widgets.RadioSelect(), \
-                                error_messages={'required':_('please choose one of the options above')},
-                                choices=SIMPLE_SUBSCRIBE_CHOICES, initial=INITIAL_EMAIL_SUBSCRIBE_OPTION)
-
-
 class ChangePasswordForm(SetPasswordForm):
     """ change password form """
     oldpw = forms.CharField(widget=forms.PasswordInput(attrs={'class':'required'}),