By: Archness _______ user 24 Feb 2020 at 8:05 p.m. CST

4 Responses
Archness _______ gravatar
When I am installing the server, I ran setup.py and when I got to the option to enter a support email, if I enter my preferred address similar to below: ``` Enter email address for support at your organization : support@domains.systems Please enter valid email address ``` If I enter a email ending in the .com TLD, it accepts it as a valid email. After I install, I can change the email in the webui to anything I want. The installer just doesn't accept the non-normal tld. Any ideas?

By Mohit Mali staff 25 Feb 2020 at 5:53 a.m. CST

Mohit Mali gravatar
Hi Archness, Thank you figuring out that minor validation issue, Let me talk with team on this. Thanks and Regards Mohit Mali

By Mohit Mali staff 25 Feb 2020 at 6:57 a.m. CST

Mohit Mali gravatar
Hi , We are using this to validate the email during setup. >>> re.match('^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$', "support@domains.syste") >>> re.match('^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$', "support@domains.syst") <_sre.SRE_Match object at 0x7fd0988c77e8> It is working, but domains.systems is not valid domain name last part of domain should be at least 4 characters Thanks and Regards Mohit Mali

By Archness _______ user 25 Feb 2020 at 9:20 p.m. CST

Archness _______ gravatar
Hi, Thanks for the response. I was able to test the regex for my actual domain. I use domains.systems when I'm posting online to mask the real domain. I am confused by your answer below: > It is working, but domains.systems is not valid domain name Do you mean that .systems is not a valid TLD? ICANN has approved .systems as a valid TLD for use in the DNS root. https://www.icann.org/resources/agreement/systems-2013-11-07-en https://newgtlds.icann.org/en/program-status/delegated-strings Thanks

By Mohit Mali staff 26 Feb 2020 at 12:29 a.m. CST

Mohit Mali gravatar
hi Archness, Thank you for pointing out this validation issue , we have fixed it on current development build it will reflect for customer in 4.1 build. Thanks and Regards Mohit Mali