in reply to How to make LWP::Simple use a proxy?

From the LWP::Simple manpage:
The user agent created by this module will identify itself as "LWP::Simple/#.##" (where "#.##" is the libwww-perl version number) an +d will initialize its proxy defaults from the environment (by calling $ua->env_proxy).
I think they mean the HTTP_PROXY environment-variable, so in your script you could set something like:
$ENV{'HTTP_PROXY'}='http://proxy:3128/';
before you create the user agent.