AttributeError: 'RRset' object has no attribute 'processing_order' #74
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: karolyi/py3-validate-email#74
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Running on localhost I see the following:
Is this problem really due to localhost?
I would guess so. Let us know when you can provide a reproducible error.
Same problem on AWS (no reverse DNS setup yet) also with deactivated SMTP check. Code:
is_valid = validate_email(email_address='<-removed->@gmail.com', check_format=True, check_blacklist=True, check_dns=True, dns_timeout=10, check_smtp=False, smtp_timeout=10, smtp_debug=False)
as far as I remember, we don't check for reverse DNS at all, so that shouldn't be the problem.
can you tell me the module versions you use? also the one for dnspython and idna?
OK. Here are the versions used:
py3-validate-email==1.0.0
dnspython==2.0.0
idna==3.2
could you update
dnspython
to latest (2.1.0
at the time of writing this) and test again? I think there lies the culprit.Yes - worked. Thank you!
you're welcome. actually, I'm trying to make a release to pypi with this fix but somehow the API is failing so I can't upload it now.
the fix will come with
1.0.1
.