stuart: server/kolab-resource-handlers/kolab-resource-handlers/resmgr resmgr.php, 1.20, 1.21

cvs at intevation.de cvs at intevation.de
Wed Sep 15 13:20:43 CEST 2004


Author: stuart

Update of /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr
In directory doto:/tmp/cvs-serv28842

Modified Files:
	resmgr.php 
Log Message:
More work on Issue360. Replies are now sent using quoted-printable transfer encoding.


Index: resmgr.php
===================================================================
RCS file: /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr/resmgr.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- resmgr.php	15 Sep 2004 10:51:19 -0000	1.20
+++ resmgr.php	15 Sep 2004 11:20:41 -0000	1.21
@@ -564,6 +564,8 @@
     // responses, i.e. double-clicking a reply will automatically update your
     // meetings, showing different status icons in the UI, etc.
     $mime = &MIME_Message::convertMimePart($ics);
+    $mime->setTransferEncoding('quoted-printable');
+    $mime->transferEncodeContents();
 
     // Build the reply headers.
     $msg_headers = &new MIME_Headers();
@@ -1051,6 +1053,8 @@
         myLog("Sending confirmation of cancelation to $organiser");
         $body = &new MIME_Part('text/plain', Text::wrap($body, 76, "\n"));
         $mime = &MIME_Message::convertMimePart($body);
+        $mime->setTransferEncoding('quoted-printable');
+        $mime->transferEncodeContents();
 
         // Build the reply headers.
         $msg_headers = &new MIME_Headers();





More information about the commits mailing list