steffen: server/kolab-resource-handlers/kolab-resource-handlers/resmgr resmgr.php.in, 1.7, 1.8

cvs at kolab.org cvs at kolab.org
Thu Aug 3 05:12:42 CEST 2006


Author: steffen

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

Modified Files:
	resmgr.php.in 
Log Message:
Fix for issue815 (unknown iTip methods)

Index: resmgr.php.in
===================================================================
RCS file: /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr/resmgr.php.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- resmgr.php.in	31 Jul 2006 18:52:30 -0000	1.7
+++ resmgr.php.in	3 Aug 2006 03:12:40 -0000	1.8
@@ -1143,6 +1143,7 @@
   $iCalendar = &getICal($sender,$resource);
   if( $iCalendar === false ) {
     // No iCal in mail
+    myLog("Could not parse iCalendar data, Passing through to $resource");
     return true;
   }
   // Get the event details out of the iTip request
@@ -1456,10 +1457,8 @@
   default:
     // We either don't currently handle these iTip methods, or they do not
     // apply to what we're trying to accomplish here
-    if (!$params['group']) {
-      myLog("Ignoring $method method");
-      return false;
-    }
+    myLog("Ignoring $method method and passing message through to $resource");
+    return true;
   }
 
   // Pass the message through to the group's mailbox





More information about the commits mailing list