From 5aa303320b4e57f5296eccba5bba7134cc12503f Mon Sep 17 00:00:00 2001
From: Craig Andrews <candrews@integralblue.com>
Date: Tue, 28 Jul 2009 22:22:07 -0400
Subject: [PATCH] Handle UTF-8 encoded text in emails.

Thanks to jaakko for pointing this out! http://identi.ca/notice/7169471
---
 scripts/maildaemon.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/maildaemon.php b/scripts/maildaemon.php
index a4003b6b26..9b3628b863 100755
--- a/scripts/maildaemon.php
+++ b/scripts/maildaemon.php
@@ -301,7 +301,7 @@ class MailerDaemon
 
         $this->extract_part($parsed,$msg,$attachments);
 
-        return array($from, $to, $msg, $attachments);
+        return array($from, $to, utf8_encode($msg), $attachments);
     }
 
     function extract_part($parsed,&$msg,&$attachments){
-- 
2.39.5