]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/View.pm
view: increase MAX_INLINE_QUOTED threshold to 12
[public-inbox.git] / lib / PublicInbox / View.pm
index 0d97428116214626415f194c4ddf2e8a14279ac5..279433916ab488a6fe7979e1fbf9826c8f05aa9b 100644 (file)
@@ -11,7 +11,7 @@ use Email::MIME::ContentType qw/parse_content_type/;
 require POSIX;
 
 # TODO: make these constants tunable
-use constant MAX_INLINE_QUOTED => 5;
+use constant MAX_INLINE_QUOTED => 12; # half an 80x24 terminal
 use constant MAX_TRUNC_LEN => 72;
 use constant PRE_WRAP => '<pre style="white-space:pre-wrap">';