[Rt-commit] [svn] r1347 - rt/branches/3.2-RELEASE/lib/RT/Interface
alexmv at pallas.eruditorum.org
alexmv at pallas.eruditorum.org
Wed Aug 18 15:31:11 EDT 2004
Author: alexmv
Date: Wed Aug 18 15:31:10 2004
New Revision: 1347
Modified:
rt/branches/3.2-RELEASE/lib/RT/Interface/Email.pm
Log:
RT-Ticket: 5826
RT-Update: correspond
RT-Status: resolved
* Fix logic; bounce message as a loop if $IsALoop and not $RT::StoreLoops;
was "if $IsALoop and ($RT::LoopsToOwner and not $RT::StoreLoops)"
Modified: rt/branches/3.2-RELEASE/lib/RT/Interface/Email.pm
==============================================================================
--- rt/branches/3.2-RELEASE/lib/RT/Interface/Email.pm (original)
+++ rt/branches/3.2-RELEASE/lib/RT/Interface/Email.pm Wed Aug 18 15:31:10 2004
@@ -622,10 +622,10 @@
Explanation => "RT thinks this message may be a bounce",
MIMEObj => $Message
);
-
- #Do we actually want to store it?
- return ( 0, "Message Bounced", undef ) unless ($RT::StoreLoops);
}
+
+ #Do we actually want to store it?
+ return ( 0, "Message Bounced", undef ) unless ($RT::StoreLoops);
}
# }}}
More information about the Rt-commit
mailing list