From 47cad81ba9ae1f57fafcb5d642cce4a9201c367f Mon Sep 17 00:00:00 2001 From: scheiter Date: Tue, 28 Mar 2006 06:51:05 +0000 Subject: [PATCH] Added kolab style shared folders git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2915 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/groups/class_groupMail.inc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/admin/groups/class_groupMail.inc b/plugins/admin/groups/class_groupMail.inc index 533347dda..b2dcfcf70 100644 --- a/plugins/admin/groups/class_groupMail.inc +++ b/plugins/admin/groups/class_groupMail.inc @@ -692,7 +692,13 @@ I: Only insider delivery */ $this->attrs['gosaMailForwardingAddress'] = $this->gosaMailForwardingAddress; /* Save shared folder target */ - $this->attrs['gosaSharedFolderTarget']= "share+".$this->uid; + if(preg_match("/kolab/i",$this->mmethod)){ + /* Kolab style */ + $this->attrs['gosaSharedFolderTarget']= "kolab+shared.".$this->uid; + }else { + /* GOsa style */ + $this->attrs['gosaSharedFolderTarget']= "share+".$this->uid; + } if(preg_match("/kolab/i",$this->mmethod)){ /* Save acl's */ -- 2.30.2