Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Email-Folder-POP3 CPAN distribution.

Report information
The Basics
Id: 48519
Status: rejected
Priority: 0/
Queue: Email-Folder-POP3

People
Owner: Nobody in particular
Requestors: njh [...] bandsman.co.uk
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.013
Fixed in: (no value)



Subject: Can't locate object method "host" via package "URI::_foreign"
This test program reports Can't locate object method "host" via package "URI::_foreign" at /usr/local/share/perl/5.10.0/Email/Folder/POP3.pm line 22. #!/usr/bin/perl -wT use strict; use Email::Folder; use Email::FolderType::Net; # insert your pop3 data here my $hostname = 'ff'; my $server = 'ff'; my $user = 'uu'; my $password = 'pp'; my $url = "pop3://$user:$password\@$server"; my $pop3 = Email::Folder->new($url) or die "Cannot connect to $server: $!"; print "folders: "; print $_->header('Subject') for $pop3->messages; print "\n";
The docs show "pop:" and not "pop3:" -- that's probably the problem. -- rjbs