RT-SimpleGPGVerify
view release on metacpan or search on metacpan
lib/RT/Interface/Email/Filter/SimpleGPGVerify.pm view on Meta::CPAN
# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable,
# royalty-free, perpetual, license to use, copy, create derivative
# works based on those contributions, and sublicense and distribute
# those contributions and any derivatives thereof.
#
# END BPS TAGGED BLOCK }}}
#
package RT::Interface::Email::Filter::SimpleGPGVerify;
use Mail::GnuPG;
=head2 GetCurrentUser
To use the gnupg-secured mail gateway, you need to do the following:
Set up a gnupgp key directory with a pubring containing only the keys
you care about and specify the following in your SiteConfig.pm
Set($RT::GPGKeyDir, "/path/to/keyring-directory");
@RT::MailPlugins = qw(Auth::MailFrom Auth::GnuPG Filter::TakeAction);
=cut
sub _safe_run_child (&) {
local @ENV{'LANG', 'LC_ALL'} = ('C', 'C');
return shift->() if $ENV{'MOD_PERL'};
# We need to reopen stdout temporarily, because in FCGI
# environment, stdout is tied to FCGI::Stream, and the child
# of the run3 wouldn't be able to reopen STDOUT properly.
my $stdin = IO::Handle->new;
$stdin->fdopen( 0, 'r' );
local *STDIN = $stdin;
my $stdout = IO::Handle->new;
$stdout->fdopen( 1, 'w' );
local *STDOUT = $stdout;
my $stderr = IO::Handle->new;
$stderr->fdopen( 2, 'w' );
local *STDERR = $stderr;
return shift->();
}
sub GetCurrentUser {
my %args = (
Message => undef,
RawMessageRef => undef,
CurrentUser => undef,
AuthLevel => undef,
Ticket => undef,
Queue => undef,
Action => undef,
@_
);
my ( $val, $key, $address,$gpg );
$args{'Message'}->head->set('RT-PGP-Status-A' => '1');
eval {
my $parser = RT::EmailParser->new();
$parser->SmartParseMIMEEntityFromScalar(Message => ${$args{'RawMessageRef'}}, Decode => 0);
$gpg = Mail::GnuPG->new( keydir => $RT::GPGKeyDir );
my $entity = $parser->Entity;
_safe_run_child {( $val, $key, $address ) = $gpg->verify( $parser->Entity)};
};
if (my $msg = $@) { $RT::Logger->error($msg); }
$args{'Message'}->head->set('RT-PGP-Status-B' => '1');
$args{'Message'}->head->set('RT-PGP-Status' => '');
if (defined $val) {
if ($address) {
$args{'Message'}->head->set('RT-PGP-Status' => 'Good signature from '. $address);
# GOOD SIGNATURE
}
else {
$args{'Message'}->head->set('RT-PGP-Status' => 'BAD GPG signature');
# BAD SIGNATURE
}
}
else {
$args{'Message'}->head->set('RT-PGP-Status' => 'NO GPG signature');
# NO SIGNATURE;
}
$args{'Message'}->head->set('RT-PGP-Status-C' => '1');
return ( $args{'CurrentUser'}, $args{'AuthLevel'} );
}
eval "require RT::Interface::Email::Auth::GnuPG_Vendor";
die $@
if ( $@
&& $@ !~ qr{^Can't locate RT/Interface/Email/Auth/GnuPG_Vendor.pm} );
eval "require RT::Interface::Email::Auth::GnuPG_Local";
die $@
if ( $@
&& $@ !~ qr{^Can't locate RT/Interface/Email/Auth/GnuPG_Local.pm} );
1;
( run in 0.900 second using v1.01-cache-2.11-cpan-df04353d9ac )