Mail related forms use @AssertTrue on #validateMail() which is not validated
As discovered by @lukas as part of #2 (closed), there are multiple forms in the back-end that try to validate the mail options by having @AssertTrue
on a method called validateMail()
. This does not work as the hibernate validators will only accept this if the method starts with is
.
This problem occurs at least in the following places:
- AudienceDuplicateForm (line 25)
- ParticipantAddForm (line 42)
- ParticipantAuthenticatedEditForm (line 53)
- ParticipantCollectionForm (line 22)
This should be fixed in order to have the validation actually working.