dig: IDNA2003 names raises error when queried as ACE
Description
While working on a few IDNA domains I just found out that dig only supports IDNA2008
There is no issue with not supporting IDNA 2003, however aborting when querying for an ASCII domain seems problematic to me (especially for actual, valid domains)
For example, the domain
$ dig +short A xn--zr9h.st
dig: 'xn--zr9h.st' is not a legal IDN name (Unknown error), use +noidnin
$ dig +short A xn--zr9h.st +noidnin
dig: 'xn--zr9h.st.' is not a legal IDNA2008 name (string contains a disallowed character), use +noidnout
$ dig +short A xn--zr9h.st +noidnin +noidnout
x.y.z.38
Request
What I would like in that case, is dig only raising a warning an skipping IDNA conversion (since I'm explicitly querying the ASCII version)
Links / references
Related to #26 (closed) (probably)
Edited by Romuald Brunet