Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/perl
- use strict;
- use warnings;
- use Mail::DKIM::Verifier;
- my $v = Mail::DKIM::Verifier->new();
- while (<STDIN>)
- {
- s/\r?\n$//;
- $v->PRINT("$_\r\n");
- }
- $v->CLOSE;
- print $v->result_detail . "\n";
Advertisement
Add Comment
Please, Sign In to add comment