From: hickert Date: Wed, 15 Dec 2010 10:26:49 +0000 (+0000) Subject: Updated Problems With Mail Shared Folders X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f4ac97eeaca2f03228b33f386e49d89a647a05f1;p=gosa.git Updated Problems With Mail Shared Folders - The acl were parsed in a wrong way. The "none" acl lead to "hickert@gonicus.de hickert@gonicus.de" instead of "hickert@gonicus.de ". git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20563 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/mail/admin/groups/mail/class_groupMail.inc b/gosa-plugins/mail/admin/groups/mail/class_groupMail.inc index 13ff9984d..85df964d3 100644 --- a/gosa-plugins/mail/admin/groups/mail/class_groupMail.inc +++ b/gosa-plugins/mail/admin/groups/mail/class_groupMail.inc @@ -98,12 +98,12 @@ class mailgroup extends plugin $ldap = $this->config->get_ldap_link(); if(isset($this->attrs['acl'])){ for($i = 0; $i < $this->attrs['acl']['count'] ; $i++){ - $str = trim($this->attrs['acl'][$i]); /* Be carefull here, since kolab22 uses spaces in the acls (herbert read anon/post) */ - $name = trim(preg_replace("/^([^\s]*).*$/","\\1",$str)); - $acl = trim(preg_replace("/^[^\s]*+\s/","",$str)); + $str = $this->attrs['acl'][$i]; + list($name, $acl) = preg_split("/[ ]{1}/", $str, 2); + if($name == "anyone") $name = "__anyone__"; $this->folder_acls[$name] = $acl; }