agregamos redirect.ex y refactorizamos get_hash.ex en controller

This commit is contained in:
2025-04-17 12:55:17 -03:00
parent 4899d61433
commit 84922f7548
5054 changed files with 326731 additions and 19002 deletions

View File

@ -1,12 +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',
[{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',[]}}]}.