Recently I switch from using LWP::UserAgent to LWPx::ParanoidAgent to fetch URLs provided by 3rd parties.
Its all very well, except sometimes a lookup in /etc/hosts is needed to resolve a domain. LWP::UserAgent did that automatically, but LWPx::ParanoidAgent only queries real DNS servers.
How can I configure LWPx::ParanoidAgent to search /etc/hosts, too ?
Update: The module lets me set a DNS resolver (Net::DNS::Resolver). Is there a way to have a DNS resolver that looks into /etc/hosts, too ?