0)) { if (empty ($fDomain)) { $fDomain = escape_string($list_domains[0]); } } if(!in_array($fDomain, $list_domains)) { flash_error( $PALANG['invalid_parameter'] ); header("Location: list-domain.php"); # invalid domain, or not owned by this admin exit; } if (!check_owner(authentication_get_username(), $fDomain)) { flash_error( $PALANG['invalid_parameter'] . " If you see this message, please open a bugreport"); # this check is most probably obsoleted by the in_array() check above header("Location: list-domain.php"); # domain not owned by this admin exit(0); } // store fDomain in $_SESSION so after adding/editing aliases/mailboxes we can // take the user back to the appropriate domain listing. (see templates/menu.tpl) if($fDomain) { $_SESSION['list_virtual_sticky_domain'] = $fDomain; } # # alias domain # if (Config::bool('alias_domain')) { if ($search == "") { $list_param = "alias_domain='$fDomain' OR target_domain='$fDomain'"; } else { $list_param = "alias_domain LIKE '%$search%' OR target_domain LIKE '%$search%'"; } $handler = new AliasdomainHandler(0, $admin_username); $handler->getList($list_param); $tAliasDomains = $handler->result(); $can_create_alias_domain = 1; foreach ($tAliasDomains as $row) { if ($row['alias_domain'] == $fDomain) $can_create_alias_domain = 0; # domain is already an alias domain } # set $can_create_alias_domain = 0 if all domains (of this admin) are already used as alias domains $handler->getList(""); if ( count($handler->result()) + 1 >= count($list_domains) ) $can_create_alias_domain = 0; # all domains (of this admin) are already alias domains } # # aliases # if ($search == "") { $list_param = "domain='$fDomain'"; # sql_domain / sql_where only needed for pagebrowser $sql_domain = " $table_alias.domain='$fDomain' "; $sql_where = ""; } else { $list_param = "(address LIKE '%$search%' OR goto LIKE '%$search%')"; # sql_domain / sql_where only needed for pagebrowser $sql_domain = db_in_clause("$table_alias.domain", $list_domains); $sql_where = " AND ( address LIKE '%$search%' OR goto LIKE '%$search%' ) "; } $alias_pagebrowser_query = " FROM $table_alias WHERE $sql_domain AND NOT EXISTS(SELECT 1 FROM $table_mailbox WHERE username=$table_alias.address) $sql_where ORDER BY address "; /* $query = " SELECT address, goto, modified, active $alias_pagebrowser_query LIMIT $page_size OFFSET $fDisplay "; */ $handler = new AliasHandler(0, $admin_username); $handler->getList($list_param, $page_size, $fDisplay); $tAlias = $handler->result(); # # mailboxes # $display_mailbox_aliases = Config::bool('alias_control_admin'); # build the sql query $sql_select = "SELECT $table_mailbox.* "; $sql_from = " FROM $table_mailbox "; $sql_join = ""; $sql_where = " WHERE "; $sql_order = " ORDER BY $table_mailbox.username "; $sql_limit = " LIMIT $page_size OFFSET $fDisplay"; if ($search == "") { $sql_where .= " $table_mailbox.domain='$fDomain' "; } else { $sql_where .= db_in_clause("$table_mailbox.domain", $list_domains) . " "; $sql_where .= " AND ( $table_mailbox.username LIKE '%$search%' OR $table_mailbox.name LIKE '%$search%' "; if ($display_mailbox_aliases) { $sql_where .= " OR $table_alias.goto LIKE '%$search%' "; } $sql_where .= " ) "; # $search is already escaped } if ($display_mailbox_aliases) { $sql_select .= ", $table_alias.goto "; $sql_join .= " LEFT JOIN $table_alias ON $table_mailbox.username=$table_alias.address "; } if (Config::bool('vacation_control_admin')) { $sql_select .= ", $table_vacation.active AS v_active "; $sql_join .= " LEFT JOIN $table_vacation ON $table_mailbox.username=$table_vacation.email "; } if (Config::bool('used_quotas') && Config::bool('new_quota_table')) { $sql_select .= ", $table_quota2.bytes as current "; $sql_join .= " LEFT JOIN $table_quota2 ON $table_mailbox.username=$table_quota2.username "; } if (Config::bool('used_quotas') && ( ! Config::bool('new_quota_table') ) ) { $sql_select .= ", $table_quota.current "; $sql_join .= " LEFT JOIN $table_quota ON $table_mailbox.username=$table_quota.username "; $sql_where .= " AND ( $table_quota.path='quota/storage' OR $table_quota.path IS NULL ) "; } $mailbox_pagebrowser_query = "$sql_from\n$sql_join\n$sql_where\n$sql_order" ; $query = "$sql_select\n$mailbox_pagebrowser_query\n$sql_limit"; $result = db_query ($query); if ($result['rows'] > 0) { $delimiter = preg_quote($CONF['recipient_delimiter'], "/"); $goto_single_rec_del = ""; while ($row = db_array ($result['result'])) { if ($display_mailbox_aliases) { $goto_split = explode(",", $row['goto']); $row['goto_mailbox'] = 0; $row['goto_other'] = array(); foreach ($goto_split as $goto_single) { if (!empty($CONF['recipient_delimiter'])) { $goto_single_rec_del = preg_replace('/' .$delimiter. '[^' .$delimiter. '@]*@/', "@", $goto_single); } if ($goto_single == $row['username'] || $goto_single_rec_del == $row['username']) { # delivers to mailbox $row['goto_mailbox'] = 1; } elseif (Config::bool('vacation') && strstr($goto_single, '@' . $CONF['vacation_domain']) ) { # vacation alias - TODO: check for full vacation alias # skip the vacation alias, vacation status is detected otherwise } else { # forwarding to other alias $row['goto_other'][] = $goto_single; } } } if ('pgsql'==$CONF['database_type']) { // XXX $row['modified'] = date('Y-m-d H:i', strtotime($row['modified'])); $row['created'] = date('Y-m-d H:i', strtotime($row['created'])); $row['active']=('t'==$row['active']) ? 1 : 0; if($row['v_active'] == NULL) { $row['v_active'] = 'f'; } $row['v_active']=('t'==$row['v_active']) ? 1 : 0; } $tMailbox[] = $row; } } $tCanAddAlias = false; $tCanAddMailbox = false; $tDisplay_back = ""; $tDisplay_back_show = ""; $tDisplay_up_show = ""; $tDisplay_next = ""; $tDisplay_next_show = ""; $limit = get_domain_properties($fDomain); if (isset ($limit)) { if ($fDisplay >= $page_size) { $tDisplay_back_show = 1; $tDisplay_back = $fDisplay - $page_size; } if (($limit['alias_count'] > $page_size) or ($limit['mailbox_count'] > $page_size)) { $tDisplay_up_show = 1; } if ( (($fDisplay + $page_size) < $limit['alias_count']) or (($fDisplay + $page_size) < $limit['mailbox_count']) ) { $tDisplay_next_show = 1; $tDisplay_next = $fDisplay + $page_size; } if($limit['aliases'] == 0) { $tCanAddAlias = true; } elseif($limit['alias_count'] < $limit['aliases']) { $tCanAddAlias = true; } if($limit['mailboxes'] == 0) { $tCanAddMailbox = true; } elseif($limit['mailbox_count'] < $limit['mailboxes']) { $tCanAddMailbox = true; } $limit ['aliases'] = eval_size ($limit ['aliases']); $limit ['mailboxes'] = eval_size ($limit ['mailboxes']); if (Config::bool('quota')) { $limit ['maxquota'] = eval_size ($limit ['maxquota']); } } $gen_show_status = array (); $check_alias_owner = array (); if ((is_array ($tAlias) and sizeof ($tAlias) > 0)) foreach (array_keys($tAlias) as $i) { $gen_show_status [$i] = gen_show_status($tAlias[$i]['address']); $check_alias_owner [$i] = check_alias_owner($admin_username, $tAlias[$i]['address']); } $gen_show_status_mailbox = array (); $divide_quota = array ('current' => array(), 'quota' => array()); if ((is_array ($tMailbox) and sizeof ($tMailbox) > 0)) for ($i = 0; $i < sizeof ($tMailbox); $i++) { $gen_show_status_mailbox [$i] = gen_show_status($tMailbox[$i]['username']); if(isset($tMailbox[$i]['current'])) { $divide_quota ['current'][$i] = divide_quota ($tMailbox[$i]['current']); } if(isset($tMailbox[$i]['quota'])) { $divide_quota ['quota'][$i] = divide_quota ($tMailbox[$i]['quota']); } if(isset($tMailbox[$i]['quota']) && isset($tMailbox[$i]['current'])) { $divide_quota ['percent'][$i] = min(100, round(($divide_quota ['current'][$i]/max(1,$divide_quota ['quota'][$i]))*100)); $divide_quota ['quota_width'][$i] = ($divide_quota ['percent'][$i] / 100 * 120); } else { $divide_quota ['current'][$i] = Config::Lang('unknown'); $divide_quota ['quota_width'][$i] = 0; # TODO: use special value? } } class cNav_bar { var $count, $title, $limit, $page_size, $pages, $search; //* arguments var $url; //* manually var $fInit, $arr_prev, $arr_next, $arr_top; //* internal var $anchor; function cNav_bar ($aTitle, $aLimit, $aPage_size, $aPages, $aSearch) { $this->count = count($aPages); $this->title = $aTitle; $this->limit = $aLimit; $this->page_size = $aPage_size; $this->pages = $aPages; if ($aSearch == "") { $this->search = ""; } else { $this->search = "&search=" . htmlentities($aSearch); } $this->url = ''; $this->fInit = false; } function init () { $this->anchor = 'a'.substr ($this->title, 3); $this->url .= '#'.$this->anchor; ($this->limit >= $this->page_size) ? $this->arr_prev = ' '.$GLOBALS ['PALANG']['pOverview_left_arrow'].' ' : $this->arr_prev = ''; ($this->limit > 0) ? $this->arr_top = ' '.$GLOBALS ['PALANG']['pOverview_up_arrow'].' ' : $this->arr_top = ''; (($this->limit + $this->page_size) < ($this->count * $this->page_size)) ? $this->arr_next = ' '.$GLOBALS ['PALANG']['pOverview_right_arrow'].' ' : $this->arr_next = ''; $this->fInit = true; } function display_pre () { $ret_val = '