Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error on smpt #77

Open
SossenSystems opened this issue Oct 26, 2023 · 1 comment
Open

Error on smpt #77

SossenSystems opened this issue Oct 26, 2023 · 1 comment

Comments

@SossenSystems
Copy link

While I was testing something, I discovered that there was a problem with Outlook / Hotmail addresses. Here's an example, the username of the email is random so as not to leak a private email.

import { validate } from 'deep-email-validator'
const main = async () => {
    let res = await validate({
        email: '[email protected]'
    })
    console.log(res)
}

main()

Response:

{
  valid: false,
  validators: {
    regex: { valid: true },
    typo: { valid: true },
    disposable: { valid: true },
    mx: { valid: true },
    smtp: { valid: false, reason: 'Mailbox not found.' }
  },
  reason: 'smtp'
}

The problem is directly in [****](smtp: { valid: false, reason: 'Mailbox not found.' })
The mailbox exists, but it is said here that it does not exist. I have been able to determine that with Outlook and Hotmail addresses so far that it is not displayed correctly.

@LuleDev
Copy link

LuleDev commented Nov 28, 2023

I'm having the same issue with this, the issue is Spamhaus (it's the spam solution that Outlook uses), and as soon as they flag your ip you are basically done for. https://check.spamhaus.org/ you can check if your ip is okay here, i still dont have a solution for this issue tho

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants