[Rt-commit] r7729 - in rt/branches/3.7-EXPERIMENTAL: . lib/RT/Crypt
ruz at bestpractical.com
ruz at bestpractical.com
Sun Apr 29 17:14:26 EDT 2007
Author: ruz
Date: Sun Apr 29 17:14:26 2007
New Revision: 7729
Added:
rt/branches/3.7-EXPERIMENTAL/lib/RT/Interface/Email/Auth/GnuPG.pm
- copied, changed from r7723, /rt/branches/3.7-EXPERIMENTAL/lib/RT/Interface/Email/Auth/GnuPGNG.pm
Removed:
rt/branches/3.7-EXPERIMENTAL/lib/RT/Interface/Email/Auth/GnuPGNG.pm
Modified:
rt/branches/3.7-EXPERIMENTAL/ (props changed)
rt/branches/3.7-EXPERIMENTAL/lib/RT/Crypt/GnuPG.pm
Log:
r5190 at cubic-pc: cubic | 2007-04-30 00:52:13 +0400
* replace old Auth/GnuPG.pm with Auth/GnuPGNG.pm
Modified: rt/branches/3.7-EXPERIMENTAL/lib/RT/Crypt/GnuPG.pm
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/lib/RT/Crypt/GnuPG.pm (original)
+++ rt/branches/3.7-EXPERIMENTAL/lib/RT/Crypt/GnuPG.pm Sun Apr 29 17:14:26 2007
@@ -86,7 +86,7 @@
... other options ...
);
-However, note that you B<must> add the 'Auth::GnuPGNG' email filter to enable
+However, note that you B<must> add the 'Auth::GnuPG' email filter to enable
the handling of incoming encrypted/signed messages.
=head3 Format of outgoing messages
@@ -194,11 +194,11 @@
=head2 Handling incoming messages
To enable handling of encryped and signed message in the RT you should add
-'Auth::GnuPGNG' mail plugin.
+'Auth::GnuPG' mail plugin.
- Set(@MailPlugins, 'Auth::MailFrom', 'Auth::GnuPGNG', ...other filter...);
+ Set(@MailPlugins, 'Auth::MailFrom', 'Auth::GnuPG', ...other filter...);
-See also `perldoc lib/RT/Interface/Email/Auth/GnuPGNG.pm`.
+See also `perldoc lib/RT/Interface/Email/Auth/GnuPG.pm`.
=head2 Errors handling
Copied: rt/branches/3.7-EXPERIMENTAL/lib/RT/Interface/Email/Auth/GnuPG.pm (from r7723, /rt/branches/3.7-EXPERIMENTAL/lib/RT/Interface/Email/Auth/GnuPGNG.pm)
==============================================================================
--- /rt/branches/3.7-EXPERIMENTAL/lib/RT/Interface/Email/Auth/GnuPGNG.pm (original)
+++ rt/branches/3.7-EXPERIMENTAL/lib/RT/Interface/Email/Auth/GnuPG.pm Sun Apr 29 17:14:26 2007
@@ -45,7 +45,7 @@
# those contributions and any derivatives thereof.
#
# END BPS TAGGED BLOCK }}}
-package RT::Interface::Email::Auth::GnuPGNG;
+package RT::Interface::Email::Auth::GnuPG;
use strict;
use warnings;
@@ -58,7 +58,7 @@
you care about and specify the following in your SiteConfig.pm
Set(%GnuPGOptions, homedir => '/opt/rt3/var/data/GnuPG');
- Set(@MailPlugins, 'Auth::MailFrom', 'Auth::GnuPGNG', ...other filter...);
+ Set(@MailPlugins, 'Auth::MailFrom', 'Auth::GnuPG', ...other filter...);
=cut
@@ -234,14 +234,14 @@
return $status, @res, @nested;
}
-eval "require RT::Interface::Email::Auth::GnuPGNG_Vendor";
+eval "require RT::Interface::Email::Auth::GnuPG_Vendor";
die $@
if ( $@
- && $@ !~ qr{^Can't locate RT/Interface/Email/Auth/GnuPGNG_Vendor.pm} );
-eval "require RT::Interface::Email::Auth::GnuPGNG_Local";
+ && $@ !~ 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/GnuPGNG_Local.pm} );
+ && $@ !~ qr{^Can't locate RT/Interface/Email/Auth/GnuPG_Local.pm} );
1;
More information about the Rt-commit
mailing list