From 0dd75db8d85be6e988e2b46156655a114b76725d Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Mon, 1 Jul 2024 21:09:17 -0700 Subject: [PATCH] Don't wrap header lines --- sendmail/view_mailq.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sendmail/view_mailq.cgi b/sendmail/view_mailq.cgi index fbd463d1a..c86bcfa81 100755 --- a/sendmail/view_mailq.cgi +++ b/sendmail/view_mailq.cgi @@ -61,7 +61,7 @@ if ($in{'headers'}) { } foreach $h (@{$mail->{'headers'}}) { print &ui_table_row($h->[0], - &html_escape(&decode_mimewords($h->[1]))); + &html_escape(&decode_mimewords($h->[1])), 1, [ "nowrap" ]); } } else {