summaryrefslogtreecommitdiffstats
path: root/whine.pl
diff options
context:
space:
mode:
authorkarl%kornel.name <>2005-12-24 02:21:00 +0100
committerkarl%kornel.name <>2005-12-24 02:21:00 +0100
commit48500e5b81925ec89af420fa9ab5c9b2d365dda0 (patch)
treeea884f89d6377f011cb98a8b963e92851f3a9922 /whine.pl
parent858d9cc9de03907dbff9938aba82b28f7ffdc173 (diff)
downloadbugzilla-48500e5b81925ec89af420fa9ab5c9b2d365dda0.tar.gz
bugzilla-48500e5b81925ec89af420fa9ab5c9b2d365dda0.tar.xz
Bug 304885: UTF-8 encoding mangles multipart messages, breaks whine emails - Patch by A. Karl Kornel <karl@kornel.name> r=glob a=justdave
Diffstat (limited to 'whine.pl')
-rwxr-xr-xwhine.pl2
1 files changed, 1 insertions, 1 deletions
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());