hello ... a small point - just setting up a client with a top level domain of .solutions as a new user - it generates an 'invalid email' error.
potato wrote: hello ... a small point - just setting up a client with a top level domain of .solutions as a new user - it generates an 'invalid email' error.
Thanks!
For now, solve this by opening /couch/functions.php, find line 1911,
if( !preg_match("/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,6}$/i", trim($field->get_data())) ){
change it to
if( !preg_match("/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,10}$/i", trim($field->get_data())) ){
I tested it with .solutions and it looks working
