From db48e5eae20571f39cf1d58ffe4a17854b73d97a Mon Sep 17 00:00:00 2001 From: Thomas Hochstein Date: Sat, 30 May 2026 12:55:27 +0200 Subject: [PATCH] mew: Decoding does B as well as Q. MIME-Q and MIME-Header will work the same for decoding, but the latter makes that easier to see. Signed-off-by: Thomas Hochstein --- mew.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mew.pl b/mew.pl index 1b9faaa..436b259 100644 --- a/mew.pl +++ b/mew.pl @@ -20,7 +20,7 @@ if ($input =~ /[\x80-\x{ffff}]/o) { $output = encode('MIME-Q', $input); $output =~ s/=20/_/g; } else { - $output = decode('MIME-Q', $input); + $output = decode('MIME-Header', $input); }; print "$output\n";