-
Notifications
You must be signed in to change notification settings - Fork 88
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
v3.25.0 truncates domain name leading to Exception with cloudflare #1157
Comments
It's the same on the duckdns provider. I had to downgrade the dnsrobocert docker container to 3.24.2 otherwise the certs can't be issued/renewed for this same reason. |
In my case(cloudflare, I had set up the email):
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In v3.25.0. When using cloudflare as the provider it raises the following exception:
This is due to
resolve_zone_name
is set toTrue
in filechallenge.py
, which triggers lexicon'sClient
to calldns.resolver.zone_for_name(domain)
. This truncates the domain name fromexample.net
to justnet
, leading to the exception above. If I manually setresolve_zone_name
toFalse
. Everything works the same as in v 3.24.x.I have tested using:
auth_username
andauth_token
auth_token
Both methods give the above exception.
I am using the below config:
The text was updated successfully, but these errors were encountered: