From bb357fb2d1597ae70f3992b4e8eb79299db76c61 Mon Sep 17 00:00:00 2001 From: iliajie Date: Sat, 9 Jul 2022 21:43:09 +0300 Subject: [PATCH] Fix not to make string length that large not to break themes --- mailboxes/boxes-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailboxes/boxes-lib.pl b/mailboxes/boxes-lib.pl index b6b48b90c..855f7d315 100755 --- a/mailboxes/boxes-lib.pl +++ b/mailboxes/boxes-lib.pl @@ -1530,7 +1530,7 @@ return $noescape ? $rv : &html_escape($rv); # Simplifies and truncates a subject header for display in the mail list sub simplify_subject { -return &convert_header_for_display($_[0], int($in{'simplify-subject-length'}) || 320); +return &convert_header_for_display($_[0], int($in{'simplify-subject-length'}) || 120); } # quoted_decode(text)