Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mail::spamassassin::dnsresolver(3pm) [debian man page]

Mail::SpamAssassin::DnsResolver(3pm)			User Contributed Perl Documentation		      Mail::SpamAssassin::DnsResolver(3pm)

NAME
Mail::SpamAssassin::DnsResolver - DNS resolution engine DESCRIPTION
This is a DNS resolution engine for SpamAssassin, implemented in order to reduce file descriptor usage by Net::DNS and avoid a response collision bug in that module. METHODS
$res->load_resolver() Load the "Net::DNS::Resolver" object. Returns 0 if Net::DNS cannot be used, 1 if it is available. $resolver = $res->get_resolver() Return the "Net::DNS::Resolver" object. $res->nameservers() Wrapper for Net::DNS::Resolver->nameservers to get or set list of nameservers $res->connect_sock() Re-connect to the first nameserver listed in "/etc/resolv.conf" or similar platform-dependent source, as provided by "Net::DNS". $res->get_sock() Return the "IO::Socket::INET" object used to communicate with the nameserver. $packet = new_dns_packet ($host, $type, $class) A wrapper for "Net::DNS::Packet::new()" which traps a die thrown by it. To use this, change calls to "Net::DNS::Resolver::bgsend" from: $res->bgsend($hostname, $type); to: $res->bgsend(Mail::SpamAssassin::DnsResolver::new_dns_packet($hostname, $type, $class)); $id = $res->bgsend($host, $type, $class, $cb) Quite similar to "Net::DNS::Resolver::bgsend", except that when a response packet eventually arrives, and "poll_responses" is called, the callback sub reference $cb will be called. Note that $type and $class may be "undef", in which case they will default to "A" and "IN", respectively. The callback sub will be called with three arguments -- the packet that was delivered, and an id string that fingerprints the query packet and the expected reply. The third argument is a timestamp (Unix time, floating point), captured at the time the packet was collected. It is expected that a closure callback be used, like so: my $id = $self->{resolver}->bgsend($host, $type, undef, sub { my ($reply, $reply_id, $timestamp) = @_; $self->got_a_reply ($reply, $reply_id); }); The callback can ignore the reply as an invalid packet sent to the listening port if the reply id does not match the return value from bgsend. $nfound = $res->poll_responses() See if there are any "bgsend" response packets ready, and return the number of such packets delivered to their callbacks. $res->bgabort() Call this to release pending requests from memory, when aborting backgrounded requests, or when the scan is complete. "Mail::SpamAssassin::PerMsgStatus::check" calls this before returning. $packet = $res->send($name, $type, $class) Emulates "Net::DNS::Resolver::send()". $res->errorstring() Little more than a stub for callers expecting this from "Net::DNS::Resolver". If called immediately after a call to $res->send this will return "query timed out" if the $res->send DNS query timed out. Otherwise "unknown error or no error" will be returned. No other errors are reported. $res->finish_socket() Reset socket when done with it. $res->finish() Clean up for destruction. perl v5.14.2 2011-06-06 Mail::SpamAssassin::DnsResolver(3pm)

Check Out this Related Man Page

Mail::DKIM::DNS(3)					User Contributed Perl Documentation					Mail::DKIM::DNS(3)

NAME
Mail::DKIM::DNS - performs DNS queries for Mail::DKIM DESCRIPTION
This is the module that performs DNS queries for Mail::DKIM. CONFIGURATION
This module has a couple configuration settings that the caller may want to use to customize the behavior of this module. $Mail::DKIM::DNS::TIMEOUT This global variable specifies the maximum amount of time (in seconds) to wait for a single DNS query to complete. The default is 10. Mail::DKIM::DNS::resolver() Use this global subroutine to get or replace the instance of Net::DNS::Resolver that Mail::DKIM uses. If set to undef (the default), then a brand new default instance of Net::DNS::Resolver will be created the first time a DNS query is needed. You will call this subroutine if you want to specify non-default options to Net::DNS::Resolver, such as different timeouts, or to enable use of a persistent socket. For example: # first, construct a custom DNS resolver my $res = Net::DNS::Resolver->new( udp_timeout => 3, tcp_timeout => 3, retry => 2, ); $res->udppacketsize(1240); $res->persistent_udp(1); # then, tell Mail::DKIM to use this resolver Mail::DKIM::DNS::resolver($res); Mail::DKIM::DNS::enable_EDNS0() This is a convenience subroutine that will construct an appropriate DNS resolver that uses EDNS0 (Extension mechanisms for DNS) to support large DNS replies, and configure Mail::DKIM to use it. (As such, it should NOT be used in conjunction with the resolver() subroutine described above.) Mail::DKIM::DNS::enable_EDNS0(); Use of EDNS0 is recommended, since it reduces the need for falling back to TCP when dealing with large DNS packets. However, it is not enabled by default because some Internet firewalls which do deep inspection of packets are not able to process EDNS0-enabled packets. When there is a firewall on a path to a DNS resolver, the EDNS0 feature should be specifically tested before enabling. AUTHOR
Jason Long, <jlong@messiah.edu> COPYRIGHT AND LICENSE
Copyright (C) 2006-2007, 2012-2013 by Messiah College This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available. perl v5.18.2 2013-02-07 Mail::DKIM::DNS(3)
Man Page