diff --git a/orchestra/apps/mailboxes/forms.py b/orchestra/apps/mailboxes/forms.py index f0149c31..ffc2320f 100644 --- a/orchestra/apps/mailboxes/forms.py +++ b/orchestra/apps/mailboxes/forms.py @@ -50,10 +50,6 @@ class MailboxForm(forms.ModelForm): 'custom_filtering': _("You didn't provide any custom filtering.") }) return custom_filtering - - def clean(self): - if not self.cleaned_data['mailboxes'] and not self.cleaned_data['forward']: - raise ValidationError("A mailbox or forward address should be provided.") class MailboxChangeForm(UserChangeForm, MailboxForm):