[Rt-commit] r9447 - rt/branches/3.6-RELEASE/lib/RT/Action

tla at bestpractical.com tla at bestpractical.com
Wed Oct 24 22:20:11 EDT 2007


Author: tla
Date: Wed Oct 24 22:20:11 2007
New Revision: 9447

Modified:
   rt/branches/3.6-RELEASE/lib/RT/Action/SendEmail.pm

Log:
don't want RecordOutgoingMailTransaction to be fatal to the scrip.

Modified: rt/branches/3.6-RELEASE/lib/RT/Action/SendEmail.pm
==============================================================================
--- rt/branches/3.6-RELEASE/lib/RT/Action/SendEmail.pm	(original)
+++ rt/branches/3.6-RELEASE/lib/RT/Action/SendEmail.pm	Wed Oct 24 22:20:11 2007
@@ -104,7 +104,7 @@
 
     my ($ret) = $self->SendMessage( $self->TemplateObj->MIMEObj );
     if ( $ret > 0 ) {
-        $ret = $self->RecordOutgoingMailTransaction( $self->TemplateObj->MIMEObj )
+        $self->RecordOutgoingMailTransaction( $self->TemplateObj->MIMEObj )
             if ($RT::RecordOutgoingEmail);
     }
     return (abs $ret);


More information about the Rt-commit mailing list