Validate::SPF - Validates SPF text string
version 0.005
use Validate::SPF qw( validate );
my $spf_text = 'v=spf1 +a/24 mx mx:mailer.example.com ip4:192.168.0.1/16 -all';
print $spf_text . "\n";
print ( validate( $spf_text ) ? 'valid' : 'NOT valid' ) . "\n";
This module implements basic SPF validation.
This is ALPHA quality software. The API may change without notification!
Parse and validate SPF string..
Module does not export any symbols by default.
Please see those modules/websites for more information related to this module.
Please report any bugs or feature requests on the bugtracker website https://github.com/Wu-Wu/Validate-SPF/issues
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
Anton Gerasimov [email protected]
This software is copyright (c) 2014 by Anton Gerasimov.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.