Subiendo api v2

This commit is contained in:
2025-04-16 10:03:13 -03:00
commit 226933fda7
7537 changed files with 576844 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{application,email_checker,
[{optional_applications,[socket]},
{applications,[kernel,stdlib,elixir,logger,socket]},
{description,"Simple library checking the validity of an email. Checks are performed in the following order:\n\n- REGEX: validate the emails has a good looking format\n\n- MX: validate the domain sever contains MX records\n\n- SMTP: validate the SMTP behind the MX records knows this email address (no email sent)\n"},
{modules,['Elixir.EmailChecker','Elixir.EmailChecker.Check',
'Elixir.EmailChecker.Check.Format',
'Elixir.EmailChecker.Check.MX',
'Elixir.EmailChecker.Loader',
'Elixir.EmailChecker.Tools']},
{registered,[]},
{vsn,"0.2.4"},
{mod,{'Elixir.EmailChecker.Loader',[]}}]}.