in reply to Parsing an intranet web page

Does LWP::Simple automatically add the www. to the domain name?

No.

LWP::Debug

use LWP::Simple '$ua'; $ua->add_handler("request_send", sub { shift->dump; return }); $ua->add_handler("response_done", sub { shift->dump; return }); my $appeals = get(...