NAME
Mail::SPF - Mail Sender Authentication
SYNOPSIS
use Mail::SPF;
my $spf = new Mail::SPF::Server();
my $request = new Mail::SPF::Request(
Ip => '123.45.6.7',
Sender => 'fred@nowhere.net',
);
my $response = $spf->query($request);
print "Result is " . $response->get_result;
DESCRIPTION
This is an initial draft object oriented reimplementation of Mail::SPF::Query. It is not yet fully tested, and does not yet contain all of the additional features expected of a practical SPF implementation.
EXPORTS
None.
BUGS
SEE ALSO
Mail::SRS::Server, Mail::SRS::Request, Mail::SRS::Response
COPYRIGHT
Copyright (c) 2005 Shevek, Julian Mehnle. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.