PHPList

Resources relating to PHPList Mailing list software

PHPLIST altering email validation level

In the config.php file, ad the following code:

# Since v2.10.9 you can define the email validation level. Possible values are:
# 0 = Disable email address validation.
# 1 = TLD & domain validation + no local part validation
# 2 = RFC821 email validation without escaping and quoting of local part
# 3 = RFC821 email validation [default value if this setting is undefined]
define(“EMAIL_ADDRESS_VALIDATION_LEVEL”,3);

PHPList email validation – adding new TLD extensions

By default, .me domain extensions do not pass the PHPLIST email validation.

In file:
admin/commonlib/lib/userlib.php
There are some lists of what are deemed valid domains…
See lines 497 and 518. You can add new TLDs that will then pass validation.