NAME

Mail::Audit::DKIM - Mail::Audit plugin for domain key verification

VERSION

version 0.003

SYNOPSIS

use Mail::Audit qw(DKIM);

my $mail = Mail::Audit->new;
...
if ($mail->dkim_passes) {
  $self->log("dkim verified!");
}

DESCRIPTION

This method adds some very simple domain key verification to Mail::Audit. In general, consult Mail::DKIM for more information.

METHODS

dkim_result

This returns the result of the DKIM verifier.

dkim_result_detail

This returns not just the one-word result code, but any available details.

dkim_passes

This method returns true if the signature was verified.

SEE ALSO

Mail::Audit, Mail::DKIM

AUTHOR

Ricardo SIGNES

COPYRIGHT AND LICENSE

This software is copyright (c) 2007 by Ricardo SIGNES.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.