Search results

  1. L

    cannot send email from perl

    Cannot send mail from perl any longer after recent system upgrades on chopin Error message: sendmail: sendmail cannot be called directly from a shell with the current user id Example script: open (MAIL, "| /usr/sbin/sendmail -t"); print MAIL "To: $mailto\n"; print MAIL "From...
  2. L

    Cannot send mail from perl script

    Cannot send mail from perl any longer after recent system upgrades on chopin Error message: sendmail: sendmail cannot be called directly from a shell with the current user id Example script: open (MAIL, "| /usr/sbin/sendmail -t"); print MAIL "To: $mailto\n"; print MAIL "From...
  3. L

    LWP::Useragent request

    Has anyone gotten a useragent request to work? My code shown below allows me to make a web request and puts the response in a variable. It works elsewhere, but when I attempt to use it here it never completes the get($request) use LWP::Simple qw($ua get); my $ua = new LWP::UserAgent...
Top