i don't think, this is the right forum but i don't know, where to post this ;-) there is a error in checking the email-address. as you can read in RFC 2822 the sign "+" is allowed in email-addresses. if i like to create rhe mail "[email protected]" (which is allowed in RFC 2822) i get a error. i can fix this by my own and send a fix, but i'd like to know WHERE the code is (in which file)
OK - found it! to one of the programmers ;-) just change // .berpr.fung email mittels regex, bei Fehler l.schen if(!preg_match("/^[a-zA-Z0-9][\w\.\-\_]{0,60}$/",$email)) { to // .berpr.fung email mittels regex, bei Fehler l.schen if(!preg_match("/^[a-zA-Z0-9][\w\.\-\+\_]{0,60}$/",$email)) { and then the error correction is "a little better" ;-) P.S. you have to change it in TWO Places