Hi Vic,
        you wrote...

> I've got a ".libnetrc" file in my home directory. It reads
>    {
>       'nntp_hosts' => [ "news.dacor.net" ],
>       'smtp_hosts' => [ "mail.dacor.net" ],
>       'pop3_hosts' => [ "mail.dacor.net", "mailstore.bgsu.edu" ],
>    }

I've thrown that file into my home directory as ".libnetrc", and 
then try to use it with Net::Config via

------------------------------------------------------------------------------
#!/usr/bin/perl
use strict;
use Net::Config qw(%NetConfig);
use Data::Dumper::Simple;
warn Dumper(%NetConfig);
------------------------------------------------------------------------------

And out she comes...

%NetConfig = (
               'pop3_hosts' => [
                                 'mail.dacor.net',
                                 'mailstore.bgsu.edu'
                               ],
               'ftp_firewall' => undef,
               'ph_hosts' => [],
               'time_hosts' => [],
               'inet_domain' => undef,
               'smtp_hosts' => [
                                 'mail.dacor.net'
                               ],
               'daytime_hosts' => [],
               'test_exist' => 1,
               'test_hosts' => 1,
               'nntp_hosts' => [
                                 'news.dacor.net'
                               ],
               'snpp_hosts' => [],
               'ftp_ext_passive' => 0,
               'ftp_int_passive' => 0
             );

I don't know if this is more help than hindrance, but at least it's
another data point!

Cheers,
Paul

Reply via email to