From 10621044aa2a4c6ce04d089d309ea16264223ed2 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 26 Jul 2010 15:46:58 +0000 Subject: [PATCH] Updated several service dialogs, fixed typos, string, html, post handling and more. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19129 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../services/kolab/class_servKolab.inc | 807 +++++++++--------- 1 file changed, 404 insertions(+), 403 deletions(-) diff --git a/gosa-plugins/kolab/admin/systems/services/kolab/class_servKolab.inc b/gosa-plugins/kolab/admin/systems/services/kolab/class_servKolab.inc index 0cce08ef6..8dcda7e01 100644 --- a/gosa-plugins/kolab/admin/systems/services/kolab/class_servKolab.inc +++ b/gosa-plugins/kolab/admin/systems/services/kolab/class_servKolab.inc @@ -1,472 +1,473 @@ hostname = preg_replace('/^cn=([^,]+),.*$/', '\1', $dn); - $this->dn = "k=kolab,".$config->current['BASE']; - - /* Load variables, if given*/ - plugin::plugin($config, $this->dn); - - /* Copy needed attributes */ - foreach($this->attributes as $val) { - $name = preg_replace('/_/', '-', $val); - if (isset($this->attrs["$name"][0])) { - $this->$val = $this->attrs["$name"][0]; - } - } +class servkolab extends goService +{ + var $postfix_mydomain = ""; + var $cyrus_admins = ""; + var $postfix_mydestination = array(); + var $postfix_mynetworks = "127.0.0.1/8"; + var $postfix_enable_virus_scan = "TRUE"; + var $postfix_relayhost = ""; + var $postfix_mxrelayenabled = true; + var $postfix_allow_unauthenticated = "FALSE"; + var $cyrus_quotawarn = "80"; + var $kolabFreeBusyFuture = "1"; + var $k = "kolab"; + var $cyrus_imap = "TRUE"; + var $cyrus_pop3 = "FALSE"; + var $cyrus_imaps = "TRUE"; + var $cyrus_pop3s = "TRUE"; + var $cyrus_sieve = "TRUE"; + var $apache_allow_unauthenticated_fb = "TRUE"; + var $proftpd_ftp = "FALSE"; + var $apache_http = "TRUE"; + var $kolabHost = array(); + var $orig_cn = ""; + var $view_logged = FALSE; + + var $attributes = array("postfix_mydomain", "postfix_mydestination", "proftpd_ftp", "k", + "postfix_mynetworks", "postfix_enable_virus_scan", "postfix_relayhost", "apache_http", + "postfix_allow_unauthenticated", "cyrus_admins", "cyrus_imap","kolabFreeBusyFuture", + "cyrus_pop3", "cyrus_imaps", "cyrus_pop3s", "cyrus_sieve", "apache_allow_unauthenticated_fb", + "cyrus_quotawarn"); + var $objectclasses = array("top", "kolab"); + + /* Serverservice vars */ + var $conflicts = array("goMailServer"); + var $DisplayName = "Kolab mail service"; + var $StatusFlag = ""; + + function servkolab(&$config, $dn = NULL, $parent= NULL) + { + /* Setting the hostname and tell this Plugin that we are the kolab extension*/ + $this->hostname = preg_replace('/^cn=([^,]+),.*$/', '\1', $dn); + $this->dn = "k=kolab,".$config->current['BASE']; + + /* Load variables, if given*/ + plugin::plugin($config, $this->dn); + + /* Copy needed attributes */ + foreach($this->attributes as $val) { + $name = preg_replace('/_/', '-', $val); + if (isset($this->attrs["$name"][0])) { + $this->$val = $this->attrs["$name"][0]; + } + } - /* Toggle relayhost */ - $this->postfix_mxrelayenabled = preg_match('/^\[/', $this->postfix_relayhost); - $this->postfix_relayhost = preg_replace("/[\[\]]/","",$this->postfix_relayhost); + /* Toggle relayhost */ + $this->postfix_mxrelayenabled = preg_match('/^\[/', $this->postfix_relayhost); + $this->postfix_relayhost = preg_replace("/[\[\]]/","",$this->postfix_relayhost); - /* Is this Server a member of the Kolab extension or not ?*/ - if(isset($this->attrs['kolabHost'])) { - $this->kolabHost= $this->attrs['kolabHost']; - unset($this->kolabHost['count']); - } - $this->is_account = false; - $this->initially_was_account = false; - foreach($this->kolabHost as $host){ - if($this->hostname == $host){ - $this->is_account = true; - $this->initially_was_account = true; - } - } + /* Is this Server a member of the Kolab extension or not ?*/ + if(isset($this->attrs['kolabHost'])) { + $this->kolabHost= $this->attrs['kolabHost']; + unset($this->kolabHost['count']); + } + $this->is_account = false; + $this->initially_was_account = false; + foreach($this->kolabHost as $host){ + if($this->hostname == $host){ + $this->is_account = true; + $this->initially_was_account = true; + } + } - /* Get list of configured domains - */ - $this->postfix_mydestination = array(); - if(isset($this->attrs['postfix-mydestination'])){ - for($i=0; $i < $this->attrs['postfix-mydestination']['count']; $i++){ - $this->postfix_mydestination[] = $this->attrs['postfix-mydestination'][$i]; - } - } + /* Get list of configured domains + */ + $this->postfix_mydestination = array(); + if(isset($this->attrs['postfix-mydestination'])){ + for($i=0; $i < $this->attrs['postfix-mydestination']['count']; $i++){ + $this->postfix_mydestination[] = $this->attrs['postfix-mydestination'][$i]; + } + } - // Prepare lists - $this->postfix_mydestinationList = new sortableListing(); - $this->postfix_mydestinationList->setDeleteable(true); - $this->postfix_mydestinationList->setInstantDelete(true); - $this->postfix_mydestinationList->setEditable(false); - $this->postfix_mydestinationList->setWidth("100%"); - $this->postfix_mydestinationList->setHeight("100px"); - $this->postfix_mydestinationList->setColspecs(array('*','20px')); - $this->postfix_mydestinationList->setHeader(array(_("Name"))); - $this->postfix_mydestinationList->setDefaultSortColumn(0); - } - - - function execute() - { - /* Call parent execute */ - plugin::execute(); - - if($this->is_account && !$this->view_logged){ - $this->view_logged = TRUE; - new log("view","server/".get_class($this),$this->dn); + // Prepare lists + $this->postfix_mydestinationList = new sortableListing(); + $this->postfix_mydestinationList->setDeleteable(true); + $this->postfix_mydestinationList->setInstantDelete(true); + $this->postfix_mydestinationList->setEditable(false); + $this->postfix_mydestinationList->setWidth("100%"); + $this->postfix_mydestinationList->setHeight("100px"); + $this->postfix_mydestinationList->setColspecs(array('*','20px')); + $this->postfix_mydestinationList->setHeader(array(_("Name"))); + $this->postfix_mydestinationList->setDefaultSortColumn(0); } - /*************** - Variable initialisation - ***************/ - - $smarty = get_smarty(); - $display = ""; - $ldap = $this->config->get_ldap_link(); - - - /* Assemble free/busy string */ - $edit = sprintf('', - $this->kolabFreeBusyFuture); - $fbfuture = sprintf(_("Include data from %s days in the past when creating free/busy lists"), $edit); - - /* Assemble quota string */ - $edit = sprintf('', - $this->cyrus_quotawarn); - $quotastr = sprintf(_("Warn users when using more than %s%% of their mail quota"), $edit); - - /* Domain name added/removed - */ - if($this->acl_is_writeable("postfixmydestination")){ - $this->postfix_mydestinationList->save_object(); - $action = $this->postfix_mydestinationList->getAction(); - if($action['action'] == 'delete'){ - $this->postfix_mydestination = $this->postfix_mydestinationList->getMaintainedData(); + + function execute() + { + /* Call parent execute */ + plugin::execute(); + + if($this->is_account && !$this->view_logged){ + $this->view_logged = TRUE; + new log("view","server/".get_class($this),$this->dn); } - if(isset($_POST['add_domain_name']) && isset($_POST['new_domain_name'])){ - $new_domain = trim(get_post('new_domain_name')); - if(!empty($new_domain)){ - if(tests::is_domain($new_domain)){ - $this->postfix_mydestination[] = $new_domain; - $this->postfix_mydestination = array_unique($this->postfix_mydestination); - }else{ - msg_dialog::display(_("Info"), msgPool::invalid(_("Mail domain"))); + + /*************** + Variable initialisation + ***************/ + + $smarty = get_smarty(); + $display = ""; + $ldap = $this->config->get_ldap_link(); + + + /* Assemble free/busy string */ + $edit = sprintf('', + $this->kolabFreeBusyFuture); + $fbfuture = sprintf(_("Include data from %s days in the past when creating free/busy lists"), $edit); + + /* Assemble quota string */ + $edit = sprintf('', + $this->cyrus_quotawarn); + $quotastr = sprintf(_("Warn users when using more than %s%% of their mail quota"), $edit); + + /* Domain name added/removed + */ + if($this->acl_is_writeable("postfixmydestination")){ + $this->postfix_mydestinationList->save_object(); + $action = $this->postfix_mydestinationList->getAction(); + if($action['action'] == 'delete'){ + $this->postfix_mydestination = $this->postfix_mydestinationList->getMaintainedData(); + } + if(isset($_POST['add_domain_name']) && isset($_POST['new_domain_name'])){ + $new_domain = trim(get_post('new_domain_name')); + if(!empty($new_domain)){ + if(tests::is_domain($new_domain)){ + $this->postfix_mydestination[] = $new_domain; + $this->postfix_mydestination = array_unique($this->postfix_mydestination); + }else{ + msg_dialog::display(_("Info"), msgPool::invalid(_("Mail domain"))); + } } } } - } - /*************** - Assign informations to smarty - ***************/ + /*************** + Assign informations to smarty + ***************/ - /* Set relayhost and if we have MX lookup enabled*/ - if($this->postfix_mxrelayenabled) { - $smarty->assign("RelayMxSupportCheck"," checked "); - } else { - $smarty->assign("RelayMxSupportCheck",""); - } + /* Set relayhost and if we have MX lookup enabled*/ + if($this->postfix_mxrelayenabled) { + $smarty->assign("RelayMxSupportCheck"," checked "); + } else { + $smarty->assign("RelayMxSupportCheck",""); + } + + /* Set acls */ + $tmp = $this->plInfo(); + foreach($tmp['plProvidedAcls'] as $name => $translation){ + $smarty->assign($name."ACL",$this->getacl($name)); + } + + /* Initialize all attributes, that were submitted */ + foreach($this->attributes as $val) + { + /* Tell smarty which variables we are useing */ + $smarty->assign($val, set_post($this->$val)); + if (($this->$val != "FALSE") && !empty($this->$val)){ + $smarty->assign($val."Check", "checked"); + } else { + $smarty->assign($val."Check", ""); + } + } + + $smarty->assign("fbfuture",set_post($fbfuture)); + $smarty->assign("quotastr",($quotastr)); - /* Set acls */ - $tmp = $this->plInfo(); - foreach($tmp['plProvidedAcls'] as $name => $translation){ - $smarty->assign($name."ACL",$this->getacl($name)); + $this->postfix_mydestinationList->setAcl($this->getacl("postfixmydestination")); + $this->postfix_mydestinationList->setListData($this->postfix_mydestination); + $this->postfix_mydestinationList->update(); + $smarty->assign("mdDiv",$this->postfix_mydestinationList->render()); + + /* Load Template */ + $display.=$smarty->fetch(get_template_path('servkolab.tpl', TRUE,dirname(__FILE__))); + return ($display); } - /* Initialize all attributes, that were submitted */ - foreach($this->attributes as $val) + function remove_from_parent() { - /* Tell smarty which variables we are useing */ - $smarty->assign($val, $this->$val); - if (($this->$val != "FALSE") && !empty($this->$val)){ - $smarty->assign($val."Check", "checked"); - } else { - $smarty->assign($val."Check", ""); - } - } - $smarty->assign("fbfuture", $fbfuture); - $smarty->assign("quotastr", $quotastr); + /* Remove status flag, it is not a memeber of + this->attributes, so ensure that it is deleted too */ + if(!empty($this->StatusFlag)){ + $this->attrs[$this->StatusFlag] = array(); + } - $this->postfix_mydestinationList->setAcl($this->getacl("postfixmydestination")); - $this->postfix_mydestinationList->setListData($this->postfix_mydestination); - $this->postfix_mydestinationList->update(); - $smarty->assign("mdDiv",$this->postfix_mydestinationList->render()); - /* Load Template */ - $display.=$smarty->fetch(get_template_path('servkolab.tpl', TRUE,dirname(__FILE__))); - return ($display); - } + /* Only walk through following code, if this host + was a member of the kolab hosts, else skip this */ + if(!$this->initially_was_account){ + return; + } - function remove_from_parent() - { + /* !!! Don't use "cn" in this function + hostname -> the initial name of the host + cn -> is the new name of the host, in case that it was renamed. + */ - /* Remove status flag, it is not a memeber of - this->attributes, so ensure that it is deleted too */ - if(!empty($this->StatusFlag)){ - $this->attrs[$this->StatusFlag] = array(); - } + $ldap = $this->config->get_ldap_link(); + $this->dn = "k=kolab,".$this->config->current['BASE']; + /* We can't simply remove the whole entry, it is possible that there are + some other hosts assigned to this object. + So, first of all check if we are the last host entry within the host + : Remove k=kolab entry + if we aren't alone, only remove host name from hosts entry and save */ + /* Are we alone? Remove complete entry... */ - /* Only walk through following code, if this host - was a member of the kolab hosts, else skip this */ - if(!$this->initially_was_account){ - return; - } + /* Check if we are definitly in kolabHosts */ + if(!in_array_ics($this->hostname,$this->kolabHost)) { + return; + } - /* !!! Don't use "cn" in this function - hostname -> the initial name of the host - cn -> is the new name of the host, in case that it was renamed. - */ + /* Integration check, not translated because they can't pop up at all, only for debug */ + if(count($this->kolabHost) == 0){ + msg_dialog::display(_("Internal error"), _("Kolab account does not exist!"), ERROR_DIALOG); + return; + } + if(!isset($this->hostname) || (empty($this->hostname))){ + msg_dialog::display(_("Error"), msgPool::required(_("hostname")), ERROR_DIALOG); + } - $ldap = $this->config->get_ldap_link(); - $this->dn = "k=kolab,".$this->config->current['BASE']; + /* Our hostname is in kolabHosts and there is a only one entry + = we are the last host entry, delete k=kolab entry */ + if (count($this->kolabHost) == 1){ - /* We can't simply remove the whole entry, it is possible that there are - some other hosts assigned to this object. - So, first of all check if we are the last host entry within the host - : Remove k=kolab entry - if we aren't alone, only remove host name from hosts entry and save */ - /* Are we alone? Remove complete entry... */ + /* Remove complete entry */ + $ldap->rmdir ($this->dn); + if (!$ldap->success()){ + msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class())); + } + } else { - /* Check if we are definitly in kolabHosts */ - if(!in_array_ics($this->hostname,$this->kolabHost)) { - return; - } + /* Only modify kolabHost */ + $hosts= array(); + foreach ($this->kolabHost as $host){ + if($host != $this->hostname){ + $hosts[]= $host; + } + } + $attrs= array('kolabHost' => $hosts); + $ldap->cd($this->dn); + $this->cleanup(); + $ldap->modify ($attrs); + if (!$ldap->success()){ + msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class())); + } + } - /* Integration check, not translated because they can't pop up at all, only for debug */ - if(count($this->kolabHost) == 0){ - msg_dialog::display(_("Internal error"), _("Kolab account does not exist!"), ERROR_DIALOG); - return; - } - if(!isset($this->hostname) || (empty($this->hostname))){ - msg_dialog::display(_("Error"), msgPool::required(_("hostname")), ERROR_DIALOG); - } + new log("remove","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); - /* Our hostname is in kolabHosts and there is a only one entry - = we are the last host entry, delete k=kolab entry */ - if (count($this->kolabHost) == 1){ - - /* Remove complete entry */ - $ldap->rmdir ($this->dn); - if (!$ldap->success()){ - msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_DEL, get_class())); - } - } else { - - /* Only modify kolabHost */ - $hosts= array(); - foreach ($this->kolabHost as $host){ - if($host != $this->hostname){ - $hosts[]= $host; - } - } - $attrs= array('kolabHost' => $hosts); - $ldap->cd($this->dn); - $this->cleanup(); - $ldap->modify ($attrs); - if (!$ldap->success()){ - msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, LDAP_MOD, get_class())); - } + /* Optionally execute a command after we're done */ + $this->handle_post_events("remove"); } - new log("remove","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); - /* Optionally execute a command after we're done */ - $this->handle_post_events("remove"); - } + function save_object() + { + if (isset($_POST['kolabtab'])){ + @plugin::save_object(); - function save_object() - { - if (isset($_POST['kolabtab'])){ - @plugin::save_object(); + /* Map attrinutes + */ + foreach($this->attributes as $attr){ + if(isset($_POST[$attr]) && ($this->acl_is_writeable(preg_replace("/_/","",$attr)))){ + $this->$attr = get_post($attr); + } + } + /* Save checkboxes */ + foreach (array( "postfix_enable_virus_scan", "postfix_allow_unauthenticated", + "cyrus_imap", "cyrus_pop3", "cyrus_imaps", + "cyrus_pop3s", "cyrus_sieve", "apache_allow_unauthenticated_fb", + "proftpd_ftp", "apache_http") as $cb){ + + if($this->acl_is_writeable(preg_replace("/_/","",$cb))){ + if (isset($_POST[$cb])){ + $this->$cb= "TRUE"; + } else { + $this->$cb= "FALSE"; + } + } + } - /* Map attrinutes - */ - foreach($this->attributes as $attr){ - if(isset($_POST[$attr]) && ($this->acl_is_writeable(preg_replace("/_/","",$attr)))){ - $this->$attr = $_POST[$attr]; - } - } - - /* Save checkboxes */ - foreach (array( "postfix_enable_virus_scan", "postfix_allow_unauthenticated", - "cyrus_imap", "cyrus_pop3", "cyrus_imaps", - "cyrus_pop3s", "cyrus_sieve", "apache_allow_unauthenticated_fb", - "proftpd_ftp", "apache_http") as $cb){ - - if($this->acl_is_writeable(preg_replace("/_/","",$cb))){ - if (isset($_POST[$cb])){ - $this->$cb= "TRUE"; - } else { - $this->$cb= "FALSE"; - } + /* Toggell relay check */ + if($this->acl_is_writeable("postfixmxrelayenabled")){ + $this->postfix_mxrelayenabled= isset($_POST['RelayMxSupport']); + } } - } - /* Toggell relay check */ - if($this->acl_is_writeable("postfixmxrelayenabled")){ - $this->postfix_mxrelayenabled= isset($_POST['RelayMxSupport']); - } } - } - - function check() - { - /* Call common method to give check the hook */ - $message= plugin::check(); + function check() + { + /* Call common method to give check the hook */ + $message= plugin::check(); - if(mailMethod::get_current_method($this->config) != "mailMethodKolab22" && count($this->postfix_mydestination) != 1){ + if(mailMethod::get_current_method($this->config) != "mailMethodKolab22" && count($this->postfix_mydestination) != 1){ # $message[] = _("Only kolab version >= 2.2 is able to handle multiple mail domains. Please provide only one mail domain."); - } + } - if(($this->kolabFreeBusyFuture=="")) { - $message[] = msgPool::required(_("Future days")); - }elseif(!tests::is_uid($this->kolabFreeBusyFuture) || $this->kolabFreeBusyFuture < 0){ - $message[] = msgPool::invalid(_("Future days"),$this->kolabFreeBusyFuture,"/[0-9]/"); - } + if(($this->kolabFreeBusyFuture=="")) { + $message[] = msgPool::required(_("Future days")); + }elseif(!tests::is_uid($this->kolabFreeBusyFuture) || $this->kolabFreeBusyFuture < 0){ + $message[] = msgPool::invalid(_("Future days"),$this->kolabFreeBusyFuture,"/[0-9]/"); + } - if(!is_int((int)($this->cyrus_quotawarn))) { - $message[] = msgPool::required(_("Quota")); - }elseif($this->cyrus_quotawarn>100){ - $message[] = _("Please choose a value between 1 and 100 for Quota settings."); - }elseif($this->cyrus_quotawarn < 1){ - $message[] = msgPool::toosmall(_("Quota"),1); - } + if(!is_int((int)($this->cyrus_quotawarn))) { + $message[] = msgPool::required(_("Quota")); + }elseif($this->cyrus_quotawarn>100){ + $message[] = _("Please choose a value between 1 and 100 for Quota settings."); + }elseif($this->cyrus_quotawarn < 1){ + $message[] = msgPool::toosmall(_("Quota"),1); + } - if(empty($this->postfix_mynetworks)) { - $message[] = msgPool::required(_("Privileged networks")); - } + if(empty($this->postfix_mynetworks)) { + $message[] = msgPool::required(_("Privileged networks")); + } + + if(!count($this->postfix_mydestination)){ + $message[] = msgPool::required(_("Mail domains")." (postfix-mydestination)" ); + } - if(!count($this->postfix_mydestination)){ - $message[] = msgPool::required(_("Mail domains")." (postfix-mydestination)" ); + return ($message); } - return ($message); - } + /* Save to LDAP */ + function save() + { + /* Set ldap connection */ + $ldap = $this->config->get_ldap_link(); - /* Save to LDAP */ - function save() - { - /* Set ldap connection */ - $ldap = $this->config->get_ldap_link(); + /* Open current dn*/ + $this->dn = "k=kolab,".$this->config->current['BASE']; - /* Open current dn*/ - $this->dn = "k=kolab,".$this->config->current['BASE']; + /* Adapt relayhost */ + $this->postfix_relayhost= preg_replace('/[\[\]]/', '', $this->postfix_relayhost); + if ($this->postfix_mxrelayenabled && $this->postfix_relayhost != ""){ + $this->postfix_relayhost= "[".$this->postfix_relayhost."]"; + } - /* Adapt relayhost */ - $this->postfix_relayhost= preg_replace('/[\[\]]/', '', $this->postfix_relayhost); - if ($this->postfix_mxrelayenabled && $this->postfix_relayhost != ""){ - $this->postfix_relayhost= "[".$this->postfix_relayhost."]"; - } + /* Check if this server was renamed, in this case we have to remove old cn first*/ + if($this->hostname != $this->cn){ + $tmp = array(); + if(in_array_ics($this->hostname,$this->kolabHost)){ + foreach($this->kolabHost as $host){ + if($host != $this->hostname){ + $tmp[] = $host; + } + } + $this->kolabHost = $tmp; + } + } - /* Check if this server was renamed, in this case we have to remove old cn first*/ - if($this->hostname != $this->cn){ - $tmp = array(); - if(in_array_ics($this->hostname,$this->kolabHost)){ - foreach($this->kolabHost as $host){ - if($host != $this->hostname){ - $tmp[] = $host; - } + /* Add ourselves to the list of kolabHost's if needed */ + if (!in_array_ics($this->cn,$this->kolabHost)){ + $this->kolabHost[]= $this->cn; } - $this->kolabHost = $tmp; - } - } - /* Add ourselves to the list of kolabHost's if needed */ - if (!in_array_ics($this->cn,$this->kolabHost)){ - $this->kolabHost[]= $this->cn; - } + /* Call parents save to prepare $this->attrs */ + plugin::save(); - /* Call parents save to prepare $this->attrs */ - plugin::save(); + /* Save or modify? */ + $ldap->cat($this->dn, array('dn')); + if (!$ldap->fetch()){ + $mode= "add"; + } else { + $mode= "modify"; + } - /* Save or modify? */ - $ldap->cat($this->dn, array('dn')); - if (!$ldap->fetch()){ - $mode= "add"; - } else { - $mode= "modify"; - } + /* Do attribute conversion */ + foreach ($this->attrs as $key => $value){ + if (preg_match('/_/', $key)){ + $old_key= $key; + $key= preg_replace('/_/', '-', $key); + $this->attrs[$key]= $value; + unset($this->attrs[$old_key]); + } + } + /* Add kolab hosts */ + $this->attrs['kolabHost']= $this->kolabHost; + + /* Perform LDAP action */ + $ldap->cd($this->dn); + $this->cleanup();; + $ldap->$mode($this->attrs); + + if($mode == "add"){ + new log("create","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + }else{ + new log("modify","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + } - /* Do attribute conversion */ - foreach ($this->attrs as $key => $value){ - if (preg_match('/_/', $key)){ - $old_key= $key; - $key= preg_replace('/_/', '-', $key); - $this->attrs[$key]= $value; - unset($this->attrs[$old_key]); - } - } - /* Add kolab hosts */ - $this->attrs['kolabHost']= $this->kolabHost; - - /* Perform LDAP action */ - $ldap->cd($this->dn); - $this->cleanup();; - $ldap->$mode($this->attrs); - - if($mode == "add"){ - new log("create","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); - }else{ - new log("modify","server/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error()); + if (!$ldap->success()){ + msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class())); + } + + /* Optionally execute a command after we're done */ + if ($this->initially_was_account == $this->is_account) { + if ($this->is_modified) { + $this->handle_post_events("modify"); + } + } else { + $this->handle_post_events("add"); + } } - if (!$ldap->success()){ - msg_dialog::display(_("LDAP error"), msgPool::ldaperror($ldap->get_error(), $this->dn, 0, get_class())); + + function getListEntry() + { + $fields = goService::getListEntry(); + $fields['Message'] = _("Kolab mail service"); +#$fields['AllowEdit'] = true; + return($fields); } - /* Optionally execute a command after we're done */ - if ($this->initially_was_account == $this->is_account) { - if ($this->is_modified) { - $this->handle_post_events("modify"); - } - } else { - $this->handle_post_events("add"); + + /* Return plugin informations for acl handling */ + static function plInfo() + { + return (array( + "plShortName" => _("Kolab"), + "plDescription" => _("Kolab mail service")." ("._("Services").")", + "plSelfModify" => FALSE, + "plDepends" => array(), + "plPriority" => 85, + "plSection" => array("administration"), + "plCategory" => array("server"), + + "plProvidedAcls"=> array( + "postfixmydomain" => _("Postfix mydomain") , + "postfixmydestination" => _("My destination") , + "cyrusadmins" => _("Cyrus admins") , + + "cyruspop3" => _("POP3 service") , + "cyruspop3s" => _("POP3/SSL service") , + + "cyrusimap" => _("IMAP service") , + "cyrusimaps" => _("IMAP/SSL service") , + + "cyrussieve" => _("Sieve service") , + "proftpdftp" => _("FTP FreeBusy service") , + "apachehttp" => _("HTTP FreeBusy service") , + "postfixenablevirusscan" => _("Enable virus scan") , + + "cyrusquotawarn" => _("Quota settings"), + + "apacheallowunauthenticatedfb" => _("Allow unauthenticated free busy"), + "kolabFreeBusyFuture" => _("kolabFreeBusyFuture") , + + "postfixmynetworks" => _("SMTP privileged networks") , + "postfixmxrelayenabled" => _("Enable MX lookup for relayhost"), + "postfixrelayhost" => _("Relayhost") , + "postfixallowunauthenticated" => _("Accept Internet Mail")) + )); } - } - - - function getListEntry() - { - $fields = goService::getListEntry(); - $fields['Message'] = _("Kolab mail service"); - #$fields['AllowEdit'] = true; - return($fields); - } - - - /* Return plugin informations for acl handling */ - static function plInfo() - { - return (array( - "plShortName" => _("Kolab"), - "plDescription" => _("Kolab mail service")." ("._("Services").")", - "plSelfModify" => FALSE, - "plDepends" => array(), - "plPriority" => 85, - "plSection" => array("administration"), - "plCategory" => array("server"), - - "plProvidedAcls"=> array( - "postfixmydomain" => _("Postfix mydomain") , - "postfixmydestination" => _("My destination") , - "cyrusadmins" => _("Cyrus admins") , - - "cyruspop3" => _("POP3 service") , - "cyruspop3s" => _("POP3/SSL service") , - - "cyrusimap" => _("IMAP service") , - "cyrusimaps" => _("IMAP/SSL service") , - - "cyrussieve" => _("Sieve service") , - "proftpdftp" => _("FTP FreeBusy service") , - "apachehttp" => _("HTTP FreeBusy service") , - "postfixenablevirusscan" => _("Enable virus scan") , - - "cyrusquotawarn" => _("Quota settings"), - - "apacheallowunauthenticatedfb" => _("Allow unauthenticated free busy"), - "kolabFreeBusyFuture" => _("kolabFreeBusyFuture") , - - "postfixmynetworks" => _("SMTP privileged networks") , - "postfixmxrelayenabled" => _("Enable MX lookup for relayhost"), - "postfixrelayhost" => _("Relayhost") , - "postfixallowunauthenticated" => _("Accept Internet Mail")) - )); - } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: -- 2.30.2