[Rt-commit] rt branch, 4.4/increase-maxinlinebody, created. rt-4.2.9-103-g59e2e9f

Alex Vandiver alexmv at bestpractical.com
Thu Dec 4 15:14:28 EST 2014


The branch, 4.4/increase-maxinlinebody has been created
        at  59e2e9f4e903460dfa3df50bf4f0da09bdaa1ef4 (commit)

- Log -----------------------------------------------------------------
commit 59e2e9f4e903460dfa3df50bf4f0da09bdaa1ef4
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Thu Dec 4 15:13:21 2014 -0500

    Increase MaxInlineBody
    
    With PreferRichText enabled, 12k quickly becomes too short for a few
    HTML replies in one body.  Increase the default to 25k.

diff --git a/etc/RT_Config.pm.in b/etc/RT_Config.pm.in
index 0e95b7b..40872b5 100644
--- a/etc/RT_Config.pm.in
+++ b/etc/RT_Config.pm.in
@@ -1779,14 +1779,14 @@ Set($PreferRichText, 1);
 
 =item C<$MaxInlineBody>
 
-C<$MaxInlineBody> is the maximum attachment size that we want to see
-inline when viewing a transaction.  RT will inline any text if the
+C<$MaxInlineBody> is the maximum textual attachment size that we want to
+see inline when viewing a transaction.  RT will inline any text if the
 value is undefined or 0.  This option can be overridden by users in
-their preferences.
+their preferences.  The default is 25k.
 
 =cut
 
-Set($MaxInlineBody, 12000);
+Set($MaxInlineBody, 25 * 1024);
 
 =item C<$ShowTransactionImages>
 

-----------------------------------------------------------------------


More information about the rt-commit mailing list