Subject: | Mail check too strict |
The e-mail syntax checker does not handle plus signs in usernames.
Edit line 450 of SendEasy.pm to fix:
Old line:
if ($mail !~ /^[\w\.-]+\@(?:[\w-]+\.)*?(?:\w+(?:-\w+)*)(?:\.\w+)+$/ ) { $stat = undef ;}
New line:
if ($mail !~ /^[\w\.+-]+\@(?:[\w-]+\.)*?(?:\w+(?:-\w+)*)(?:\.\w+)+$/ ) { $stat = undef ;}
-----------------------^^^