|
NAMEMail::OpenDKIM::Signature - maintains a DKIM signature for a messageSYNOPSISuse Mail::DKIM::Signature; # create a signature object my $sig = Mail::OpenDKIM::Signature->new( Algorithm => 'rsa-sha1', Method => 'relaxed', Domain => 'example.org', Selector => 'selector1', KeyFile => 'private.key', ); # Generate a signature ... my $signature = ... # Store the signature $sig->data($signature) # Emit the email header line print $sig->as_string() . "\r\n"; DESCRIPTIONMail::OpenDKIM::Signature maintains a signature header for an email.It provides enough of a subset of the functionaility of Mail::DKIM::Signature to allow use of the OpenDKIM library with Mail::OpenDKIM::Signer. SUBROUTINES/METHODSnewCreate a new signature.dataGet and set the signature.as_stringReturns the signature in a form suitable for inclusion in an e-mail's header.EXPORTThis module exports nothing.SEE ALSOMail::DKIM::SignatureMail::OpenDKIM::Signer NOTESThis module does not yet implement all of the API of Mail::DKIM::SignatureAUTHORNigel Horne, "<nigel at mailermailer.com>"BUGSPlease report any bugs or feature requests to "bug-mail-opendkim at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Mail-OpenDKIM>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Mail::OpenDKIM::Signature You can also look for information at:
SPONSORThis code has been developed under sponsorship of MailerMailer LLC, http://www.mailermailer.com/COPYRIGHT AND LICENCEThis module is Copyright 2011 Khera Communications, Inc. It is licensed under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |