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

Add domains from 10minutemail.com #470

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

e-nomem
Copy link

@e-nomem e-nomem commented Apr 1, 2024

As shown below, I managed to create an email address from the 10minutemail.com website for the cazlg.com domain.

10minutemail-com

The cazlg.com domain resolves MX lookups to prd-smtp.10minutemail.com., and so do the rest of the domains in this PR. The following script can be used to validate the list:

#!/usr/bin/env bash
set -euo pipefail

PR="470"
PROVIDER="10minutemail.com"
MX_RECORDS=("prd-smtp.10minutemail.com.")

while read -r line; do
    echo "Checking $line"
    mx="$(dig +short MX "$line" | cut -d' ' -f2-)"
    grep_args=()
    for search_record in "${MX_RECORDS[@]}"; do
        grep_args+=('-e' "^${search_record//./\.}$")
    done
    grep -q "${grep_args[@]}" <<< "$mx" || echo "$line is not part of $PROVIDER (MX: $(paste -s -d' ' - <<< "${mx:-missing}"))"
done < <(curl -fsSL -o- https://github.com/disposable-email-domains/disposable-email-domains/pull/$PR.diff | grep '^+[^+]' | cut -d'+' -f2-)

Closes #429
Closes #430

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

Successfully merging this pull request may close these issues.

add cazlq.com add cazlv.com
1 participant