mortenbra / alexandria-plsql-utils

Oracle PL/SQL Utility Library
786 stars 317 forks source link

Email validation was changed to follow RFC 5322 standard #25

Closed TimNanos closed 8 years ago

TimNanos commented 8 years ago

The email regexp was improved to be case-insensitive. The old is_valid_email() function was removed. The is_valid_email2() function was renamed to is_valid_email() in order to be more user-friendly. Code readability was improved.

mortenbra commented 8 years ago

There may be people using the is_valid_email2() function, so perhaps better to leave the function signature in the package for now, but make it a wrapper for is_valid_email, and note in the comment blocks that the function is deprecated and will be removed at some future point.

TimNanos commented 8 years ago

Agree. Done!