tjfontaine / node-dns

Replacement dns module in pure javascript for node.js
MIT License
585 stars 154 forks source link

LetsEncrypt requires mixed-case domains for validation #109

Closed coolaj86 closed 8 years ago

coolaj86 commented 8 years ago

See https://github.com/letsencrypt/boulder/issues/1243

Not sure who's in the right and who's in the wrong, but presently node-dns does not play well with letsencrypt's boulder server on account of expecting domain names to be echoed back in the same case that they were queried.

coolaj86 commented 8 years ago

When I was first grepping through the code I was seeing a few toLowerCase(), but it looks like they don't actually have anything to do with this problem... hmm...

and digging further into native-dns-packet/packet.js I don't see any offending code there either...

closing