[Rt-commit] r8765 - rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Interface/Email/Auth

ruz at bestpractical.com ruz at bestpractical.com
Tue Aug 28 14:35:04 EDT 2007


Author: ruz
Date: Tue Aug 28 14:35:04 2007
New Revision: 8765

Modified:
   rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Interface/Email/Auth/GnuPG.pm

Log:
* store raw message we have instead of parsed

Modified: rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Interface/Email/Auth/GnuPG.pm
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Interface/Email/Auth/GnuPG.pm	(original)
+++ rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Interface/Email/Auth/GnuPG.pm	Tue Aug 28 14:35:04 2007
@@ -103,7 +103,7 @@
     $args{'Message'}->attach(
         Type        => 'application/x-rt-original-message',
         Disposition => 'inline',
-        Data        => $msg->as_string,
+        Data        => ${ $args{'RawMessageRef'} },
     );
 
     $args{'Message'}->head->add( 'X-RT-GnuPG-Status' => $_->{'status'} )


More information about the Rt-commit mailing list