mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-27 15:12:25 +00:00
Case of non existant email (legacy accounts)
This commit is contained in:
parent
2374a2b4b8
commit
ad2c1e3d26
1 changed files with 31 additions and 26 deletions
|
@ -144,13 +144,16 @@ class UserCreationForm(FormRevMixin, forms.ModelForm):
|
|||
super(UserCreationForm, self).__init__(*args, prefix=prefix, **kwargs)
|
||||
|
||||
def clean_email(self):
|
||||
if self.cleaned_data.get("email"):
|
||||
if not OptionalUser.objects.first().local_email_domain in self.cleaned_data.get(
|
||||
"email"
|
||||
):
|
||||
return self.cleaned_data.get("email").lower()
|
||||
else:
|
||||
raise forms.ValidationError(
|
||||
_("You can't use an internal address as your external address.")
|
||||
_("You can't use a {} address.").format(
|
||||
OptionalUser.objects.first().local_email_domain
|
||||
)
|
||||
)
|
||||
|
||||
class Meta:
|
||||
|
@ -349,6 +352,7 @@ class AdherentForm(FormRevMixin, FieldPermissionFormMixin, ModelForm):
|
|||
)
|
||||
|
||||
def clean_email(self):
|
||||
if self.cleaned_data.get("email"):
|
||||
if not OptionalUser.objects.first().local_email_domain in self.cleaned_data.get(
|
||||
"email"
|
||||
):
|
||||
|
@ -756,6 +760,7 @@ class EmailSettingsForm(FormRevMixin, FieldPermissionFormMixin, ModelForm):
|
|||
self.fields["local_email_enabled"].label = _("Use local emails")
|
||||
|
||||
def clean_email(self):
|
||||
if self.cleaned_data.get("email"):
|
||||
if not OptionalUser.objects.first().local_email_domain in self.cleaned_data.get(
|
||||
"email"
|
||||
):
|
||||
|
|
Loading…
Reference in a new issue