Skip Menu |

This queue is for tickets about the Mail-SendEasy CPAN distribution.

Report information
The Basics
Id: 9724
Status: new
Priority: 0/
Queue: Mail-SendEasy

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



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 ;} -----------------------^^^