From 48500e5b81925ec89af420fa9ab5c9b2d365dda0 Mon Sep 17 00:00:00 2001 From: "karl%kornel.name" <> Date: Sat, 24 Dec 2005 01:21:00 +0000 Subject: Bug 304885: UTF-8 encoding mangles multipart messages, breaks whine emails - Patch by A. Karl Kornel r=glob a=justdave --- whine.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'whine.pl') diff --git a/whine.pl b/whine.pl index 0c8815368..b001957dd 100755 --- a/whine.pl +++ b/whine.pl @@ -404,7 +404,7 @@ sub mail { # now produce a ready-to-mail mime-encoded message - $args->{'boundary'} = "-----=====-----" . $$ . "--" . time() . "-----"; + $args->{'boundary'} = "----------" . $$ . "--" . time() . "-----"; $template->process("whine/multipart-mime.txt.tmpl", $args, \$msg) or die($template->error()); -- cgit v1.2.3-24-g4f1b