X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fadmin%2Fgroups%2Fclass_groupMail.inc;h=32ae8a21dde9d536b81a00172b9da46d6a323425;hb=8e377b062f516e80dc563022e969d52a4bb89b2b;hp=a09c263cd5cedbb8838df1d07746b0ce95a7e680;hpb=decbebcdec179f978e83a3b649c60025da5f632b;p=gosa.git diff --git a/plugins/admin/groups/class_groupMail.inc b/plugins/admin/groups/class_groupMail.inc index a09c263cd..32ae8a21d 100644 --- a/plugins/admin/groups/class_groupMail.inc +++ b/plugins/admin/groups/class_groupMail.inc @@ -3,72 +3,99 @@ class mailgroup extends plugin { /* CLI vars */ - var $cli_summary= "Manage mail groups/shared folders"; - var $cli_description= "Some longer text\nfor help"; - var $cli_parameters= array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser"); - var $method= "mailMethod"; - - /* plugin specific values */ - var $mail= ""; - var $uid= ""; - var $cn= ""; - var $gosaMailAlternateAddress= array(); - var $gosaMailForwardingAddress= array(); - var $gosaMailDeliveryMode= "[L ]"; - var $gosaMailServer= ""; - var $gosaMailQuota= ""; - var $gosaMailMaxSize= ""; - var $gosaVacationMessage= ""; - var $gosaSpamSortLevel= ""; - var $gosaSpamMailbox= ""; - - var $quotaUsage= 0; - var $forward_dialog= FALSE; - var $members= array(); - var $mailusers= array(); - var $perms= array(); - var $imapacl= array('anyone' => 'p', '%members%' => 'lrsp', '' => 'p'); + var $cli_summary = "Manage mail groups/shared folders"; + var $cli_description = "Some longer text\nfor help"; + var $cli_parameters = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser"); + + var $uid = ""; // User id + var $cn = ""; // cn + + var $method = "mailMethod"; // Used Mail method + var $mmethod = ""; // Contains the gosa.conf MAILMETHOD + var $mail = ""; // Default mail address + + var $gosaMailAlternateAddress = array(); // Set default Alternate Mail Adresses to empty array + var $gosaMailForwardingAddress = array(); // Forwarding also empty + + var $gosaMailServer = ""; // Selected mailserver + var $gosaMailQuota = ""; // Defined Quota + var $quotaUsage = 0; // Currently used quota + + var $gosaVacationMessage = ""; // Vocation message + + var $imapacl = array('anyone' => 'p', // Set acls for everyone + '%members%' => 'lrsp', // %members% are all group-members + '' => 'p'); // Every user added gets this right + + + var $gosaSpamSortLevel = ""; + var $gosaSpamMailbox = ""; + var $gosaSharedFolderTarget ; + + var $forward_dialog = FALSE; + + var $members = array(); // Group members + + var $mailusers = array(); + var $perms = array(); + var $gosaMailDeliveryMode = "[L ]"; // + var $gosaMailMaxSize = ""; // + /* Helper */ var $indexed_acl= array(); var $indexed_user= array(); /* attribute list for save action */ - var $attributes= array("mail", "gosaMailServer", "gosaMailQuota", "gosaMailMaxSize", + var $attributes= array( "mail", "gosaMailServer", "gosaMailQuota", "gosaMailMaxSize", + "gosaMailAlternateAddress", "gosaMailForwardingAddress", "gosaMailDeliveryMode", "gosaSpamSortLevel", "gosaSpamMailbox", - "gosaVacationMessage"); + "acl","gosaSharedFolderTarget", "gosaVacationMessage"); + var $objectclasses= array("gosaMailAccount"); - /* constructor, if 'dn' is set, the node loads the given - 'dn' from LDAP */ function mailgroup ($config, $dn= NULL, $ui= NULL) { - /* Configuration is fine, allways */ - $this->config= $config; - - /* Load bases attributes */ + /* Initialise all available attributes ... if possible + */ plugin::plugin($config, $dn); - /* Set mailMethod to the one defined in gosa.conf */ + /* Set mailMethod to the one defined in gosa.conf + */ if (isset($this->config->current['MAILMETHOD'])){ - $method= $this->config->current['MAILMETHOD']; - if (class_exists("mailMethod$method")){ - $this->method= "mailMethod$method"; - } else { - print_red(sprintf(_("There is no mail method '%s' specified in your gosa.conf available."), $method)); - } + $this->mmethod= $this->config->current['MAILMETHOD']; } - /* Convert cn to uid in case of existing entries */ + /* Check if selected mail method exists + */ + if (class_exists("mailMethod$this->mmethod")){ + $this->method= "mailMethod$this->mmethod"; + } else { + print_red(sprintf(_("There is no mail method '%s' specified in your gosa.conf available."), $this->mmethod)); + } + + /* Load Mailserver + */ + if(isset($this->attrs['gosaMailServer'][0])){ + $this->gosaMailServer = $this->attrs['gosaMailServer'][0]; + } + + /* Convert cn to uid in case of existing entry + */ if (isset($this->attrs['cn'][0])){ $this->uid= $this->attrs['cn'][0]; } - if ($dn != NULL){ - /* Load attributes containing arrays */ + /* If this ins't new mailgroup, read all required data from ldap + */ + if (($dn != "new")&&($dn != NULL)){ + + /* Load attributes which represent multiple entries + */ foreach (array("gosaMailAlternateAddress", "gosaMailForwardingAddress") as $val){ + $this->$val = array(); if (isset($this->attrs["$val"]["count"])){ for ($i= 0; $i<$this->attrs["$val"]["count"]; $i++){ array_push($this->$val, $this->attrs["$val"][$i]); @@ -76,10 +103,18 @@ class mailgroup extends plugin } } - /* Only do IMAP actions if gosaMailServer attribute is set */ + /* Only do IMAP actions if gosaMailServer attribute is set + */ if (isset ($this->attrs["gosaMailServer"][0])){ + + /* Create new instance of our defined mailclass + */ $method= new $this->method($this->config); + if ($method->connect($this->attrs["gosaMailServer"][0])){ + + /* get Quota + */ $quota= $method->getQuota($this->uid); /* Maybe the entry is not saved in new style, get @@ -109,15 +144,17 @@ class mailgroup extends plugin /* Highest count wins as %members%, remove all members with the same acl */ - $this->imapacl['%members%']= $leader; + if(!empty($leader)){ + $this->imapacl['%members%']= $leader; + } foreach ($this->imapacl as $user => $acl){ if ($this->acl == $leader && in_array($user, $this->attrs['memberUid'])){ unset($this->imapacl[$user]); } } - - } - + + } // ENDE ! isset ($this->attrs['acl']) + /* Update quota values */ if ($quota['gosaMailQuota'] == 2147483647){ $this->quotaUsage= ""; @@ -127,12 +164,15 @@ class mailgroup extends plugin $this->gosaMailQuota= $quota['gosaMailQuota']; } $method->disconnect(); - } + } // ENDE $method->connect($this->attrs["gosaMailServer"][0])){ /* Adapt attributes if needed */ $method->fixAttributesOnLoad($this); - } - } + + } // ENDE gosaMailServer + + } // ENDE dn != "new" + /* Get global filter config */ if (!is_global("gmailfilter")){ @@ -145,12 +185,86 @@ class mailgroup extends plugin } /* Load permissions */ - if (isset($this->attrs['acl'])){ - for ($i= 0; $i<$this->attrs['acl']['count']; $i++){ - list($user, $permission)= split(' ', $this->attrs['acl'][$i]); - $this->imapacl[$user]= $permission; - if ($user != "anyone" && $user != "%members%"){ - unset($this->imapacl['']); + $tmp = array(); + if(preg_match("/kolab/i",$this->mmethod)){ + $ldap = $this->config->get_ldap_link(); + + if (isset($this->attrs['acl'])){ + + for ($i= 0; $i<$this->attrs['acl']['count']; $i++){ + list($user, $permission)= split(' ', $this->attrs['acl'][$i]); + + /* Add to list */ + $this->imapacl[$user]= $permission; + + /* Get all user permissions sorted by acl, to detect the most used acl + This acl is then used for %members% + */ + if ($user != "anyone" && $user != "%members%"){ + $tmp[$permission][] = $user; + } + + /* There is an entry in $this->imapacl like this this ... + $this->attrs['imapacl']['anyone'] = "p"; + $this->attrs['imapacl']['%members%'] = "lprs"; + $this->attrs['imapacl'][''] = ""; <------ This is used to diplay an empty + Field for special acls in our template. + If there is at least one special acl in out imapacl, + we don't need this entry anymore, because it is already displayed. + */ + if ($user != "anyone" && $user != "%members%"){ + unset($this->imapacl['']); + } + } + } + + /* In this section we dectect which acl is tho most used + This will be used as %members% acl + */ + $tmp2 = array(); + foreach($tmp as $acl => $user){ + $tmp2[count($tmp[$acl])]=$acl; + } + /* Most used at last + */ + ksort($tmp2); + + /* Assign last (most used acl) to %members% acl + */ + $str = array_pop($tmp2); + if(!empty($str)) { + $this->imapacl['%members%']=$str; + } + + /* Open ldap connection + */ + $ldap = $this->config->get_ldap_link(); + $ldap->cd($this->config->current['BASE']); + + /* Remove those users, that use %members% acl && are member of this group. */ + foreach($this->imapacl as $mail => $permission){ + $ldap->search("(&(objectClass=person)(mail=".$mail."))",array("uid")); + $atr = $ldap->fetch(); + if((isset($this->attrs['memberUid'])) && (is_array($this->attrs['memberUid']))){ + if((isset($atr['uid'][0]))&&(in_array($atr['uid'][0],$this->attrs['memberUid']))&&($permission == $this->imapacl['%members%'])){ + unset($this->imapacl[$mail]); + } + } + } + /* Append an empty entry, for special acl handling */ + if(count($this->imapacl)==2){ + $this->imapacl[''] =""; + } + + }else{ // Not kolab + /* Load permissions */ + if (isset($this->attrs['acl'])){ + for ($i= 0; $i<$this->attrs['acl']['count']; $i++){ + list($user, $permission)= split(' ', $this->attrs['acl'][$i]); + $this->imapacl[$user]= $permission; + if ($user != "anyone" && $user != "%members%"){ + unset($this->imapacl['']); + } } } } @@ -163,11 +277,10 @@ class mailgroup extends plugin $this->perms["lrswipcd"]= _("write"); } - function execute() { - /* Call parent execute */ - plugin::execute(); + /* Call parent execute */ + //plugin::execute(); /* Load templating engine */ $smarty= get_smarty(); @@ -271,7 +384,7 @@ class mailgroup extends plugin /* Delete forward email addresses */ if (isset($_POST['delete_forwarder'])){ - if (count($_POST['forwarder_list']) + if (count($_POST['forwarder_list']) && chkacl ($this->acl, "gosaMailForwardingAddress") == ""){ $this->delForwarder ($_POST['forwarder_list']); @@ -387,6 +500,7 @@ class mailgroup extends plugin if (isset($this->imapacl['anyone'])){ $smarty->assign("default_permissions", $this->imapacl['anyone']); } + $smarty->assign("member_permissions", "lrsp"); if (isset($this->imapacl['%members%'])){ $smarty->assign("member_permissions", $this->imapacl['%members%']); } @@ -401,7 +515,7 @@ class mailgroup extends plugin foreach($this->imapacl as $user => $acl){ if ($user != "anyone" && $user != "%members%"){ $tmp.= ""; foreach ($this->perms as $key => $value){ if ($acl == $key){ $tmp.= ""; @@ -412,11 +526,11 @@ class mailgroup extends plugin $tmp.= " "; if ($nr == $count - 1){ $tmp.= ""; + "name=\"add_$nr\" $perm>"; } if ($count > 3){ $tmp.= ""; + "name=\"del_$nr\" $perm>"; } } $this->indexed_user[$nr]= $user; @@ -436,7 +550,7 @@ class mailgroup extends plugin $smarty->assign("$val"."ACL", chkacl($this->acl, "$val")); } if (is_numeric($this->gosaMailQuota) && $this->gosaMailQuota != 0){ - $smarty->assign("quotausage", progressbar(round(($this->quotaUsage * 100)/ $this->gosaMailQuota,100,15,true))); + $smarty->assign("quotausage", progressbar(round(($this->quotaUsage * 100)/ $this->gosaMailQuota),100,15,true)); $smarty->assign("quotadefined", "true"); } else { $smarty->assign("quotadefined", "false"); @@ -450,6 +564,14 @@ class mailgroup extends plugin /* remove object from parent */ function remove_from_parent() { + /* Added these ObjectClass and Attributes, because they were not + removed correctly, only in case of kolab ... + */ + if(isset($this->config->current['MAILMETHOD'])&&preg_match("/kolab/i",$this->config->current['MAILMETHOD'])){ + $this->attributes[]="acl"; + $this->attributes[]="kolabHomeServer"; + $this->objectclasses[] = "kolabSharedFolder"; + } /* include global link_info */ $ldap= $this->config->get_ldap_link(); @@ -464,7 +586,9 @@ class mailgroup extends plugin /* Keep uid */ unset ($this->attrs['uid']); $ldap->cd($this->dn); - $ldap->modify($this->attrs); + $this->cleanup(); + $ldap->modify ($this->attrs); + show_ldap_error($ldap->get_error()); /* Connect to IMAP server for account deletion */ @@ -492,12 +616,12 @@ class mailgroup extends plugin we're in some other dialog. Example for gosaMailDeliveryMode [LR ] - L: Local delivery - R: Reject when exceeding mailsize limit - S: Use spam filter - V: Use vacation message - C: Use custom sieve script - I: Only insider delivery */ +L: Local delivery +R: Reject when exceeding mailsize limit +S: Use spam filter +V: Use vacation message +C: Use custom sieve script +I: Only insider delivery */ if (isset($_POST['mailedit'])){ /* Save ldap attributes */ @@ -537,7 +661,7 @@ class mailgroup extends plugin if (!isset($_POST["user_$nr"])){ continue; } - if ($_POST["user_$nr"] != $user || + if ($_POST["user_$nr"] != $user || $_POST["perm_$nr"] != $this->indexed_acl[$nr]){ $this->is_modified= TRUE; } @@ -549,57 +673,107 @@ class mailgroup extends plugin } + /* Save data to LDAP, depending on is_account we save or delete */ function save() { $ldap= $this->config->get_ldap_link(); + $ldap->cd($this->config->current['BASE']); /* Call parents save to prepare $this->attrs */ plugin::save(); /* Save arrays */ - $this->attrs['gosaMailAlternateAddress']= $this->gosaMailAlternateAddress; - $this->attrs['gosaMailForwardingAddress']= $this->gosaMailForwardingAddress; + $this->attrs['gosaMailAlternateAddress'] = $this->gosaMailAlternateAddress; + $this->attrs['gosaMailForwardingAddress'] = $this->gosaMailForwardingAddress; /* Save shared folder target */ $this->attrs['gosaSharedFolderTarget']= "share+".$this->uid; - /* Save acl's */ - $this->attrs['acl']= array(); - foreach ($this->imapacl as $user => $acl){ - if ($user == ""){ - continue; + if(preg_match("/kolab/i",$this->mmethod)){ + /* Save acl's */ + $this->attrs['acl']= array(); + foreach ($this->imapacl as $user => $acl){ + if ($user == ""){ + continue; + } + $ldap->search("(&(objectClass=person)(|(uid=".$user.")(mail=".$user.")))",array("mail")); + $mail = $ldap->fetch(); + if($mail){ + if(isset($mail['mail'][0])){ + $this->attrs['acl'][]= $mail['mail'][0]." $acl"; + } + }else{ + $this->attrs['acl'][]= "$user $acl"; + } + } + }else{ + /* Save acl's */ + $this->attrs['acl']= array(); + foreach ($this->imapacl as $user => $acl){ + if ($user == ""){ + continue; + } + $this->attrs['acl'][]= "$user $acl"; } - $this->attrs['acl'][]= "$user $acl"; } - /* Save data to LDAP */ - $ldap->cd($this->dn); - $ldap->modify($this->attrs); - show_ldap_error($ldap->get_error()); - /* Only do IMAP actions if we are not a template */ - if (!$this->is_template){ + if(preg_match("/kolab/i",$this->mmethod)){ + if (empty($this->gosaMailServer)||is_array($this->gosaMailServer)){ + if(isset($this->attrs['gosaMailServer'][0])){ + $this->gosaMailServer = $this->attrs['gosaMailServer'][0]; + } + } + } + + + if ((!$this->is_template)&&(!empty($this->gosaMailServer))){ $method= new $this->method($this->config); $method->fixAttributesOnStore($this); - if ($method->connect($this->gosaMailServer)){ + if (($method->connect($this->gosaMailServer))){ $method->updateMailbox($this->uid); $method->setQuota($this->uid, $this->gosaMailQuota); - - /* Exchange '%member%' pseudo entry */ - $memberacl= $this->imapacl['%members%']; - unset ($this->imapacl['%members%']); - foreach ($this->members as $user){ - if (!isset($this->imapacl[$user])){ - $this->imapacl[$user]= $memberacl; - } - } - $method->setSharedFolderPermissions($this->uid, $this->imapacl); $method->disconnect(); } } + /* Exchange '%member%' pseudo entry */ + $memberacl= $this->imapacl['%members%']; + + if(empty($memberacl)){ + print_a($this); + exit(); + } + + foreach ($this->members as $user){ + if(preg_match("/kolab/i",$this->mmethod)){ + $ldap->cd($this->config->current['BASE']); + $ldap->search("(&(objectClass=person)(|(mail=".$user.")(uid=".$user.")))",array("mail")); + $at = $ldap->fetch(); + if(isset($at['mail'][0])){ + $user = $at['mail'][0]; + } + } + if (!isset($this->imapacl[$user])){ + $this->imapacl[$user]= $memberacl; + } + } + $this->attrs['acl'] = array(); + foreach($this->imapacl as $user => $acl){ + if(preg_match("/%members%/",$user) || empty($user)) continue; + + $this->attrs['acl'][] = $user." ".$acl; + } + + /* Save data to LDAP */ + $ldap->cd($this->dn); + $this->cleanup(); + $ldap->modify ($this->attrs); + + show_ldap_error($ldap->get_error()); + /* Optionally execute a command after we're done */ if ($this->initially_was_account == $this->is_account){ if ($this->is_modified){ @@ -653,7 +827,7 @@ class mailgroup extends plugin if (is_integer(strpos($this->gosaMailDeliveryMode, "reject")) && $this->gosaMailMaxSize == ""){ $message[]= _("You need to set the maximum mail size in order to reject anything."); } - + if(ord($this->imapacl['anyone'][0])==194){ $message[] = _("Please choose valid permission settings. Default permission can't be emtpy."); } @@ -701,7 +875,7 @@ class mailgroup extends plugin function delForwarder($addresses) { $this->gosaMailForwardingAddress= array_remove_entries ($addresses, - $this->gosaMailForwardingAddress); + $this->gosaMailForwardingAddress); $this->is_modified= TRUE; } @@ -739,7 +913,7 @@ class mailgroup extends plugin function delAlternate($addresses) { $this->gosaMailAlternateAddress= array_remove_entries ($addresses, - $this->gosaMailAlternateAddress); + $this->gosaMailAlternateAddress); $this->is_modified= TRUE; }