richard: server/kolab-resource-handlers/kolab-resource-handlers/resmgr kolabfilter.php.in, 1.5, 1.6 kolabmailboxfilter.php.in, 1.3, 1.4 olhacks.php.in, 1.1, 1.2 resmgr.php.in, 1.1, 1.2

cvs at intevation.de cvs at intevation.de
Sun Feb 5 21:15:12 CET 2006


Author: richard

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

Modified Files:
	kolabfilter.php.in kolabmailboxfilter.php.in olhacks.php.in 
	resmgr.php.in 
Log Message:
Use the new kolab_php_module_prefix variable

Index: kolabfilter.php.in
===================================================================
RCS file: /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr/kolabfilter.php.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- kolabfilter.php.in	11 Jan 2006 15:54:25 -0000	1.5
+++ kolabfilter.php.in	5 Feb 2006 20:15:10 -0000	1.6
@@ -25,8 +25,8 @@
 	 '.:@phplibdir2@:@phppeardir@:'.$include_path);
 
 require_once 'PEAR.php';
-require_once 'kolabfilter/misc.php';
-require_once 'kolabfilter/kolabmailtransport.php';
+require_once '@kolab_php_module_prefix at kolabfilter/misc.php';
+require_once '@kolab_php_module_prefix at kolabfilter/kolabmailtransport.php';
 
 // Profiling code
 /*
@@ -336,7 +336,7 @@
 
 if( !$senderok ) {
   if( $ical && $params['allow_outlook_ical_forward'] ) {
-    require_once('kolabfilter/olhacks.php');
+    require_once('@kolab_php_module_prefix at kolabfilter/olhacks.php');
     $rc = olhacks_embedical( $fqhostname, $sender, $recipients, $from, $subject, $tmpfname );
     if( PEAR::isError( $rc ) ) {
       fwrite(STDOUT,"Filter failed: ".$rc->getMessage()."\n");

Index: kolabmailboxfilter.php.in
===================================================================
RCS file: /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr/kolabmailboxfilter.php.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- kolabmailboxfilter.php.in	22 Dec 2005 22:36:15 -0000	1.3
+++ kolabmailboxfilter.php.in	5 Feb 2006 20:15:10 -0000	1.4
@@ -25,8 +25,8 @@
 	 '.:@phplibdir2@:@phppeardir@:'.$include_path);
 
 require_once 'PEAR.php';
-require_once 'kolabfilter/misc.php';
-require_once 'kolabfilter/kolabmailtransport.php';
+require_once '@kolab_php_module_prefix at kolabfilter/misc.php';
+require_once '@kolab_php_module_prefix at kolabfilter/kolabmailtransport.php';
 
 // Load our configuration file
 $params = array();
@@ -97,7 +97,7 @@
 }
 fclose($tmpf);
 if( $ical ) {
-  require_once 'kolabfilter/resmgr.php';
+  require_once '@kolab_php_module_prefix at kolabfilter/resmgr.php';
   $newrecips = array();
   foreach( $recipients as $recip ) {
     myLog("Calling resmgr_filter( $sender, $recip, $tmpfname )", RM_LOG_DEBUG);

Index: olhacks.php.in
===================================================================
RCS file: /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr/olhacks.php.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- olhacks.php.in	5 Feb 2006 20:02:03 -0000	1.1
+++ olhacks.php.in	5 Feb 2006 20:15:10 -0000	1.2
@@ -18,7 +18,7 @@
  *  Project's homepage; see <http://www.gnu.org/licenses/gpl.html>.
  */
 
-require_once 'kolabfilter/misc.php';
+require_once '@kolab_php_module_prefix at kolabfilter/misc.php';
 require_once HORDE_BASE . '/lib/core.php';
 require_once 'Horde/iCalendar.php';
 require_once 'Horde/NLS.php';

Index: resmgr.php.in
===================================================================
RCS file: /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr/resmgr.php.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- resmgr.php.in	5 Feb 2006 20:02:03 -0000	1.1
+++ resmgr.php.in	5 Feb 2006 20:15:10 -0000	1.2
@@ -18,7 +18,7 @@
  *  Project's homepage; see <http://www.gnu.org/licenses/gpl.html>.
  */
 
-require_once 'kolabfilter/misc.php';
+require_once '@kolab_php_module_prefix at kolabfilter/misc.php';
 
 // What actions we can take when receiving an event request
 define('RM_ACT_ALWAYS_ACCEPT',              1);
@@ -43,7 +43,7 @@
 require_once 'Horde/MIME/Structure.php';
 //include_once 'Horde/Kolab.php';
 require_once 'Horde/Text.php';
-require_once 'freebusy/recurrence.class.php';
+require_once '@kolab_php_module_prefix at freebusy/recurrence.class.php';
 
 // Globals
 $imap = NULL;





More information about the commits mailing list