in reply to MX Record Lookups

This can be done a lot easier using other Net::DNS::Packet and Net::DNS::RR methods ...

my $packet = $res->send($domain, 'MX'); foreach my $answer ($packet->answer) { next unless $answer->type eq 'MX'; push @results, $answer->exchange; }

Additionally, depending upon your requirements, it may be worthwhile to return a list of mail exchanges ($answer->exchange) and their respective preferences ($answer->preference).

 

perl -le "print+unpack'N',pack'B32','00000000000000000000001010011010'"

Replies are listed 'Best First'.
Re: Re: MX Record Lookups
by Gerard (Pilgrim) on Dec 10, 2003 at 22:14 UTC
    hmmmm.... Why couldn't I find that when I was writing the code. I seem to remember pouring over it for quite some time.
    Thanks for your help
    Regards,
    Gerard