Subiendo api v2
This commit is contained in:
12
_build/prod/lib/email_checker/ebin/email_checker.app
Normal file
12
_build/prod/lib/email_checker/ebin/email_checker.app
Normal 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',[]}}]}.
|
||||
Reference in New Issue
Block a user