Hi, are you using compojoomComment or joomlacomment?
In joomlacomment it doesn't check the validity of the e-mail.
Anyway. For compojoomcomment.
Open components/com_comment/joscomment/js/client.js
On line 396 you will find the JOSC_editPost function. In it you will find this:
if(typeof(form.temail) != 'undefined') {
if(form.temail.value != '' && !form.temail.disabled) {
if (!validate(form.temail.value, form)) {
return 0;
}
}
}
change it to this:
if(typeof(form.temail) != 'undefined') {
if(!form.temail.disabled) {
if (!validate(form.temail.value, form)) {
return 0;
}
}
}
that should do the trick.
Daniel