api-v2/_build/dev/lib/email_checker/ebin/email_checker.app
2025-04-16 10:03:13 -03:00

13 lines
893 B
Erlang

{application,email_checker,
[{modules,['Elixir.EmailChecker','Elixir.EmailChecker.Check',
'Elixir.EmailChecker.Check.Format',
'Elixir.EmailChecker.Check.MX',
'Elixir.EmailChecker.Loader',
'Elixir.EmailChecker.Tools']},
{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"},
{registered,[]},
{vsn,"0.2.4"},
{mod,{'Elixir.EmailChecker.Loader',[]}}]}.