<?php require_once dirname(__FILE__).'/accesscheck.php'; $columns = array('messages', 'lists', 'bounces', 'blacklist'); if (!defined('PHPLISTINIT')) { exit; } $filterpanel = $countpanel = $paging = ''; if (!isset($_SESSION['userlistfilter']) || !$_SESSION['userlistfilter']) { $_SESSION['userlistfilter'] = array(); } if (isset($_GET['sortby'])) { $sortby = removeXss($_GET['sortby']); //# only allow spaces and word chars $sortby = preg_replace('/[^\w ]+/', '', $sortby); } else { $sortby = ''; } if (strtolower($sortby) == 'password') { $sortby = ''; } if (isset($_GET['delete'])) { $delete = sprintf('%d', $_GET['delete']); } else { $delete = 0; } //print $_GET["delete"].' '.$delete .isSuperUser();exit; if (isset($_GET['start'])) { $start = sprintf('%d', $_GET['start']); } else { $start = 0; } $searchdone = 1; if (!empty($_GET['start'])) { $start = sprintf('%d', $_GET['start']); } else { $start = 0; } $unconfirmed = !empty($_GET['unconfirmed']) ? sprintf('%d', $_GET['unconfirmed']) : 0; $blacklisted = !empty($_GET['blacklisted']) ? sprintf('%d', $_GET['blacklisted']) : 0; if (isset($_GET['sortorder'])) { if ($_GET['sortorder'] == 'asc') { $sortorder = 'asc'; } else { $sortorder = 'desc'; } } else { $sortorder = 'desc'; } if (isset($_GET['listid'])) { $listid = sprintf('%d', $_GET['listid']); } else { $listid = 0; } if (isset($_GET['find'])) { if (!isset($_GET['findby'])) { $_GET['findby'] = ''; } if ($_GET['find'] == 'NULL') { $_SESSION['userlistfilter']['find'] = ''; $_SESSION['userlistfilter']['findby'] = ''; } else { $_SESSION['userlistfilter']['find'] = removeXss($_GET['find']); $_SESSION['userlistfilter']['findby'] = removeXss($_GET['findby']); } } else { $_SESSION['userlistfilter']['find'] = ''; $_SESSION['userlistfilter']['findby'] = ''; } $find = trim($_SESSION['userlistfilter']['find']); $findby = $_SESSION['userlistfilter']['findby']; if (!$findby) { $findby = 'email'; } $findtables = ''; $findbyselect = ''; $findfield = ''; $findfieldname = ''; $find_url = ''; // hmm interesting, if they select a findby but not a find, use the Sql wildcard: if ($findby && !$find) { // this is very slow, so instead erase the findby. // $find = '%'; $findby = ''; } $system_findby = array( 'email', 'foreignkey', 'uniqid', ); if ($findby && $find && !in_array($findby, $system_findby)) { $find_url = '&find='.urlencode($find).'&findby='.urlencode($findby); $findatt = Sql_Fetch_Array_Query(sprintf('select id,tablename,type,name from %s where id = %d', $tables['attribute'], $findby)); switch ($findatt['type']) { case 'textline': case 'hidden': $findtables = ','.$tables['user_attribute']; $findbyselect = sprintf(' %s.userid = %s.id and %s.attributeid = %d and %s.value like "%%%s%%"', $tables['user_attribute'], $tables['user'], $tables['user_attribute'], $findby, $tables['user_attribute'], sql_escape($find)); $findfield = $tables['user_attribute'].'.value as display, '.$tables['user'].'.bouncecount'; $findfieldname = $findatt['name']; break; case 'select': case 'radio': $findtables = ','.$tables['user_attribute'].','.$table_prefix.'listattr_'.$findatt['tablename']; $findbyselect = sprintf(' %s.userid = %s.id and %s.attributeid = %d and %s.value = %s.id and %s.name like "%%%s%%"', $tables['user_attribute'], $tables['user'], $tables['user_attribute'], $findby, $tables['user_attribute'], $table_prefix. 'listattr_'.$findatt['tablename'], $table_prefix. 'listattr_'.$findatt['tablename'], sql_escape($find)); $findfield = $table_prefix.'listattr_'.$findatt['tablename'].'.name as display, '.$tables['user'].'.bouncecount'; $findfieldname = $findatt['name']; break; } } else { $findtables = ''; $findbyselect = sprintf(' %s like "%%%s%%"', $findby, sql_escape($find)); $findfield = $tables['user'].'.bouncecount,'.$tables['user'].'.foreignkey'; $findfieldname = 'Email'; $find_url = '&find='.urlencode($find); } if (empty($findfield)) { $findfield = 'email'; } if ($require_login && !isSuperUser()) { $access = accessLevel('users'); switch ($access) { case 'owner': $table_list = $tables['user'].','.$tables['listuser'].','.$tables['list'].$findtables; $subselect = "{$tables['user']}.id = {$tables['listuser']}.userid and {$tables['listuser']}.listid = {$tables['list']}.id and {$tables['list']}.owner = ".$_SESSION['logindetails']['id']; if ($unconfirmed) { $subselect .= ' and !confirmed '; } if ($blacklisted) { $subselect .= ' and blacklisted '; } if ($find && $findbyselect) { $listquery = "select DISTINCT {$tables['user']}.email,{$tables['user']}.id,$findfield,confirmed from ".$table_list." where $subselect and $findbyselect"; $count = Sql_query("SELECT count(distinct {$tables['user']}.id) FROM ".$table_list." where $subselect and $findbyselect"); $unconfirmedcount = Sql_query("SELECT count(distinct {$tables['user']}.id) FROM ".$table_list." where $subselect and !confirmed and $findbyselect"); } else { $listquery = "SELECT DISTINCT {$tables['user']}.email,{$tables['user']}.id,$findfield,confirmed FROM ".$table_list." WHERE $subselect"; $count = Sql_query("SELECT count(distinct {$tables['user']}.id) FROM ".$table_list." WHERE $subselect"); $unconfirmedcount = Sql_query("SELECT count(distinct {$tables['user']}.id) FROM ".$table_list." WHERE !confirmed and $subselect"); } break; case 'all': case 'view': $table_list = $tables['user'].$findtables; if ($find && $findbyselect) { if ($unconfirmed) { $findbyselect .= ' and !confirmed '; } if ($blacklisted) { $findbyselect .= ' and blacklisted '; } $listquery = "select DISTINCT {$tables['user']}.email,{$tables['user']}.id,$findfield,{$tables['user']}.confirmed from ".$table_list." where $findbyselect"; $count = Sql_query('SELECT count(*) FROM '.$table_list." where $findbyselect"); $unconfirmedcount = Sql_query('SELECT count(*) FROM '.$table_list." where !confirmed && $findbyselect"); } else { $listquery = "select DISTINCT {$tables['user']}.email,{$tables['user']}.id,$findfield,{$tables['user']}.confirmed from ".$table_list; $count = Sql_query('SELECT count(*) FROM '.$table_list); $unconfirmedcount = Sql_query('SELECT count(*) FROM '.$table_list.' where !confirmed'); $searchdone = 0; } $delete_message = '<br />'.$GLOBALS['I18N']->get('Delete will delete user and all listmemberships').'<br />'; break; case 'none': default: print Error($GLOBALS['I18N']->get('Your privileges for this page are insufficient')); return; } $delete_message = '<br />'.$GLOBALS['I18N']->get('Delete will delete user from the list').'<br />'; } else { //# is superuser $table_list = $tables['user'].$findtables; if ($find && $findbyselect) { if ($unconfirmed) { $findbyselect .= ' and !confirmed '; } if ($blacklisted) { $findbyselect .= ' and blacklisted '; } $listquery = "select {$tables['user']}.email,{$tables['user']}.id,$findfield,{$tables['user']}.confirmed from ".$table_list." where $findbyselect"; $count = Sql_query('SELECT count(*) FROM '.$table_list." where $findbyselect"); $unconfirmedcount = Sql_query('SELECT count(*) FROM '.$table_list." where !confirmed and $findbyselect"); } else { $subselect = ''; if ($unconfirmed || $blacklisted) { $subselect = ' where '; if ($unconfirmed && $blacklisted) { $subselect .= ' !confirmed and blacklisted '; } elseif ($unconfirmed) { $subselect .= ' !confirmed '; } else { $subselect .= ' blacklisted'; } } else { $searchdone = 0; } $listquery = "select {$tables['user']}.email,{$tables['user']}.id,$findfield,{$tables['user']}.confirmed from ".$table_list.' '.$subselect; $count = Sql_query('SELECT count(*) FROM '.$table_list.' '.$subselect); $unconfirmedcount = Sql_query('SELECT count(*) FROM '.$table_list.' where !confirmed'); } $delete_message = '<br />'.$GLOBALS['I18N']->get('Delete will delete user and all listmemberships').'<br />'; } $totalres = Sql_fetch_Row($unconfirmedcount); $totalunconfirmed = $totalres[0]; $totalres = Sql_fetch_Row($count); $total = $totalres[0]; if ($start > $total) { $start = 0; } if (!empty($delete) && isSuperUser()) { verifyCsrfGetToken(); // delete the index in delete $action_result = $GLOBALS['I18N']->get('deleting')." $delete ..\n"; deleteUser($delete); $action_result .= '..'.$GLOBALS['I18N']->get('Done').'<br/><hr/>'; $previous_search = ''; if (!$find == '') { $previous_search = "&start=$start&find=$find&findby=$findby"; } $_SESSION['action_result'] = $action_result; Redirect("users$previous_search"); } elseif (!empty($delete)) { echo ActionResult(s('Sorry, only super users can delete users')); } if (isset($add)) { if (isset($new)) { $query = 'insert into '.$tables['user']." (email,entered) values(\"$new\",now())"; $result = Sql_query($query); $userid = Sql_insert_id(); $query = 'insert into '.$tables['listuser']." (userid,listid,entered) values($userid,$id,now())"; $result = Sql_query($query); } echo ActionResult($GLOBALS['I18N']->get('User added')); } // Make the totals human readable $totalFormatted = number_format($total); $totalunconfirmedFormatted = number_format($totalunconfirmed); // Add messages to panel $countpanel .= s('%s subscribers in total', $totalFormatted); $countpanel .= '<br/>'.s('Subscribers with a red icon are either unconfirmed or blacklisted or both')." ($totalunconfirmedFormatted)<br/>"; $url = getenv('REQUEST_URI'); if ($unconfirmed) { $unc = 'checked="checked"'; } else { $unc = ''; } if ($blacklisted) { $bll = 'checked="checked"'; } else { $bll = ''; } if (!isset($start)) { $start = 0; } $filterpanel .= '<div class="filter">'; $filterpanel .= sprintf('<form method="get" name="listcontrol" action=""> <input type="hidden" name="page" value="users" /> <input type="hidden" name="start" value="%d" /> <input type="hidden" name="find" value="%s" /> <input type="hidden" name="findby" value="%s" /> <label for="unconfirmed">%s:<input type="checkbox" name="unconfirmed" value="1" %s /></label> <label for="blacklisted">%s:<input type="checkbox" name="blacklisted" value="1" %s /></label>', $start, htmlspecialchars(stripslashes($find)), htmlspecialchars(stripslashes($findby)), $GLOBALS['I18N']->get('Show only unconfirmed users'), $unc, $GLOBALS['I18N']->get('Show only blacklisted users'), $bll); //print '</td><td valign="top">'; $select = ''; foreach (array( 'email', 'bouncecount', 'entered', 'modified', 'foreignkey', ) as $item) { $select .= sprintf(' <option value="%s" %s>%s</option>', $item, $item == $sortby ? 'selected="selected"' : '', $GLOBALS['I18N']->get($item)); } $filterpanel .= sprintf(' <label for="sortby">%s: <select name="sortby" onchange="document.listcontrol.submit();"> <option value="0">-- default</option> %s </select></label> <label for="sortdesc">%s: <input type="radio" name="sortorder" id="sortdesc" value="desc" %s onchange="document.listcontrol.submit();" /></label> <label for="sortasc">%s: <input type="radio" name="sortorder" id="sortasc" value="asc" %s onchange="document.listcontrol.submit();" /></label> <input class="submit" type="submit" name="change" value="%s" /> ', $GLOBALS['I18N']->get('Sort by'), $select, $GLOBALS['I18N']->get('desc'), $sortorder == 'desc' ? 'checked="checked"' : '', $GLOBALS['I18N']->get('asc'), $sortorder == 'asc' ? 'checked="checked"' : '', $GLOBALS['I18N']->get('Go')); $filterpanel .= '</div>'; $order = ''; if ($sortby) { $order = ' order by '.$tables['user'].'.'.$sortby; if ($sortorder == 'asc') { $order .= ' asc'; } else { $order .= ' desc'; } } $find_url .= "&sortby=$sortby&sortorder=$sortorder&unconfirmed=$unconfirmed&blacklisted=$blacklisted"; $listing = ''; $dolist = 1; if (true || $total > MAX_USER_PP) { if (isset($start) && $start) { $totalUserCount = number_format($start + MAX_USER_PP); $listing = sprintf($GLOBALS['I18N']->get('Listing user %d to %d'), $start, $totalUserCount); $limit = "limit $start,".MAX_USER_PP; } else { if ($total < USERSPAGE_MAX || $searchdone) { $listing = sprintf($GLOBALS['I18N']->get('Listing user %d to %d'), 1, 50); $limit = 'limit 0,50'; $start = 0; $dolist = 1; } else { $dolist = 0; } } if ($dolist) { $paging = simplePaging('users'.$find_url, $start, $total, MAX_USER_PP, $GLOBALS['I18N']->get('Subscribers')); $result = Sql_query("$listquery $order $limit"); } else { // print Info($GLOBALS['I18N']->get('too many subscribers, use a search query to list some'),1); $result = 0; } } else { $result = Sql_Query("$listquery $order"); } $filterpanel .= ' <div class="usersFind"> <input type="hidden" name="id" value="' .$listid.'" />'; $filterpanel .= '<label for="find">'.$GLOBALS['I18N']->get('Find a user').'</label>'; $filterpanel .= '<input type="text" name="find" value="'; $filterpanel .= $find != '%' ? htmlspecialchars(stripslashes($find)) : ''; $filterpanel .= '" size="30" />'; $filterpanel .= '<select name="findby">'; $filterpanel .= '<option value="email" '; $filterpanel .= $findby == 'email' ? 'selected="selected"' : ''; $filterpanel .= '>'.$GLOBALS['I18N']->get('Email').'</option>'; $filterpanel .= '<option value="foreignkey" '; $filterpanel .= $findby == 'foreignkey' ? 'selected="selected"' : ''; $filterpanel .= '>'.$GLOBALS['I18N']->get('Foreign Key').'</option>'; $filterpanel .= '<option value="uniqid" '; $filterpanel .= $findby == 'uniqid' ? 'selected="selected"' : ''; $filterpanel .= '>'.$GLOBALS['I18N']->get('Unique ID').'</option>'; $att_req = Sql_Query('select id,name from '.$tables['attribute'].' where type = "hidden" or type = "textline" or type = "select"'); while ($row = Sql_Fetch_Array($att_req)) { $filterpanel .= sprintf('<option value="%d" %s>%s</option>', $row['id'], $row['id'] == $findby ? 'selected="selected"' : '', shortentextdisplay($row['name'], 20)); } $filterpanel .= '</select><input class="submit" type="submit" value="'.s('Go').'" /> <a href="./?page=users&find=NULL" class="reset">'.s('reset').'</a>'; $filterpanel .= '</form></div>'; //$filterpanel .= '<tr><td colspan="4"></td></tr> //</table>'; echo Info($countpanel); $panel = new UIPanel($GLOBALS['I18N']->get('Find subscribers'), $filterpanel); echo $panel->display(); //if (($require_login && isSuperUser()) || !$require_login) echo '<div class="actions">'; echo '<div id="add-csv-button" class="pull-left">'.PageLinkButton('dlusers', $GLOBALS['I18N']->get('Download all users as CSV file'), 'nocache='.uniqid('')).'</div>'; echo '<div id="add-user-button" class="pull-right">'.PageLinkButton('adduser', $GLOBALS['I18N']->get('Add a User')).'</div>'; echo '</div><div class="clearfix"></div>'; $some = 0; $ls = new WebblerListing(s('subscribers')); $ls->setElementHeading(s('subscriber')); $ls->usePanel($paging); if ($result) { while ($user = Sql_fetch_array($result)) { $some = 1; $element = htmlspecialchars($user['email']); $ls->addElement($element, PageURL2("user&start=$start&id=".$user['id'].$find_url)); $ls->setClass($element, 'row1'); //# we make one column with the subscriber status being "on" or "off" //# two columns are too confusing and really unnecessary // ON = confirmed && !blacklisted // $ls->addColumn($user["email"], $GLOBALS['I18N']->get('confirmed'), $user["confirmed"] ? $GLOBALS["img_tick"] : $GLOBALS["img_cross"]); // if (in_array("blacklist", $columns)) { $onblacklist = isBlackListed($element); // $ls->addColumn($user["email"], $GLOBALS['I18N']->get('bl l'), $onblacklist ? $GLOBALS["img_tick"] : $GLOBALS["img_cross"]); // } if ($user['confirmed'] && !$onblacklist) { $ls_confirmed = $GLOBALS['img_tick']; } else { $ls_confirmed = $GLOBALS['img_cross']; } $ls_del = ''; // $ls->addColumn($user["email"], $GLOBALS['I18N']->get('del'), sprintf('<a href="%s" onclick="return deleteRec(\'%s\');">del</a>',PageUrl2('users'.$find_url), PageURL2("users&start=$start&delete=" .$user["id"]))); if (isSuperUser()) { $ls_del = sprintf('<a href="javascript:deleteRec(\'%s\');" class="del">del</a>', PageURL2("users&start=$start&find=$find&findby=$findby&delete=".$user['id'])); } /* if (isset ($user['foreignkey'])) { $ls->addColumn($user["email"], $GLOBALS['I18N']->get('key'), $user["foreignkey"]); } if (isset ($user["display"])) { $ls->addColumn($user["email"], " ", $user["display"]); } */ if (in_array('lists', $columns)) { $lists = Sql_query('SELECT count(*) FROM '.$tables['listuser'].','.$tables['list'].' where userid = '.$user['id'].' and '.$tables['listuser'].'.listid = '.$tables['list'].'.id'); $membership = Sql_fetch_row($lists); $ls->addColumn($element, $GLOBALS['I18N']->get('lists'), $membership[0]); } if (in_array('messages', $columns)) { $msgs = Sql_query('SELECT count(*) FROM '.$tables['usermessage'].' where userid = '.$user['id'].' and status = "sent"'); $nummsgs = Sql_fetch_row($msgs); $ls_msgs = $GLOBALS['I18N']->get('msgs').': '.$nummsgs[0]; } //## allow plugins to add columns if (isset($GLOBALS['plugins']) && is_array($GLOBALS['plugins'])) { foreach ($GLOBALS['plugins'] as $plugin) { if (method_exists($plugin, 'displayUsers')) { $plugin->displayUsers($user, $element, $ls); } } } $ls_bncs = ''; if (in_array('bounces', $columns) && !empty($user['bouncecount'])) { $ls_bncs = $GLOBALS['I18N']->get('bncs').': '.$user['bouncecount']; } $ls->addRow($element, "<div class='listinghdname gray'>".$ls_msgs.'<br />'.$ls_bncs.'</div>', $ls_del.' '.$ls_confirmed); } echo $ls->display(); if (!$some && !$total) { $p = new UIPanel($GLOBALS['I18N']->get('no results'), $GLOBALS['I18N']->get('No users apply')); echo $p->display(); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
PEAR | Folder | 0755 |
|
|
PHPMailer | Folder | 0755 |
|
|
PHPMailer6 | Folder | 0755 |
|
|
actions | Folder | 0755 |
|
|
css | Folder | 0755 |
|
|
data | Folder | 0755 |
|
|
help | Folder | 0755 |
|
|
images | Folder | 0755 |
|
|
inc | Folder | 0755 |
|
|
info | Folder | 0755 |
|
|
js | Folder | 0755 |
|
|
locale | Folder | 0755 |
|
|
onyxrss | Folder | 0755 |
|
|
plugins | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
ui | Folder | 0755 |
|
|
.gitignore | File | 20 B | 0644 |
|
.htaccess | File | 489 B | 0644 |
|
.minceconf | File | 994 B | 0644 |
|
AnalyticsQuery.php | File | 985 B | 0644 |
|
CsvReader.php | File | 1.27 KB | 0644 |
|
EmailSender.php | File | 477 B | 0644 |
|
Updater.php | File | 193 B | 0644 |
|
about.php | File | 7.4 KB | 0644 |
|
accesscheck.php | File | 715 B | 0644 |
|
addprefix.php | File | 1.01 KB | 0644 |
|
adduser.php | File | 46 B | 0644 |
|
admin.php | File | 12.77 KB | 0644 |
|
adminattributes.php | File | 7.46 KB | 0644 |
|
admins.php | File | 5.16 KB | 0644 |
|
analytics.php | File | 2.84 KB | 0644 |
|
attributes.php | File | 26.2 KB | 0644 |
|
blacklistemail.php | File | 1.22 KB | 0644 |
|
bounce.php | File | 11.14 KB | 0644 |
|
bouncemgt.php | File | 1.44 KB | 0644 |
|
bouncerule.php | File | 4.27 KB | 0644 |
|
bouncerules.php | File | 6.33 KB | 0644 |
|
bounces.php | File | 7.57 KB | 0644 |
|
catlists.php | File | 3.34 KB | 0644 |
|
checkbouncerules.php | File | 1.43 KB | 0644 |
|
checki18n.php | File | 3.13 KB | 0644 |
|
checkprerequisites.php | File | 1.62 KB | 0644 |
|
class.image.inc | File | 3.9 KB | 0644 |
|
class.phplistmailer.php | File | 30.73 KB | 0644 |
|
class.phplistmailerbase.php | File | 1.67 KB | 0644 |
|
community.php | File | 3.5 KB | 0644 |
|
communityfeed.php | File | 2.36 KB | 0644 |
|
configure.php | File | 7.85 KB | 0644 |
|
connect.php | File | 89.86 KB | 0644 |
|
convertstats.php | File | 5.83 KB | 0644 |
|
converttoutf8.php | File | 3.78 KB | 0644 |
|
cron.php | File | 3.34 KB | 0644 |
|
date.php | File | 7.65 KB | 0644 |
|
dbcheck.php | File | 3.7 KB | 0644 |
|
defaultFrontendTexts.php | File | 9.79 KB | 0644 |
|
defaultconfig.php | File | 30.66 KB | 0644 |
|
defaultplugin.php | File | 31.59 KB | 0644 |
|
defaults.php | File | 3.64 KB | 0644 |
|
defaultsystemtemplate.php | File | 15.29 KB | 0644 |
|
defaulttest.php | File | 1.23 KB | 0644 |
|
dlusers.php | File | 235 B | 0644 |
|
domainbounces.php | File | 507 B | 0644 |
|
domainstats.php | File | 371 B | 0644 |
|
editattributes.php | File | 8.78 KB | 0644 |
|
editlist.php | File | 7.4 KB | 0644 |
|
eventlog.php | File | 4.68 KB | 0644 |
|
export.php | File | 6.86 KB | 0644 |
|
exportuserdata.php | File | 8.26 KB | 0644 |
|
fckphplist.php | File | 49.84 KB | 0644 |
|
gchart.php | File | 903 B | 0644 |
|
generatebouncerules.php | File | 5.51 KB | 0644 |
|
home.php | File | 6.56 KB | 0644 |
|
hostedprocessqueuesetup.php | File | 3.09 KB | 0644 |
|
htaccess | File | 311 B | 0644 |
|
image.php | File | 2.01 KB | 0644 |
|
import.php | File | 2.75 KB | 0644 |
|
import1.php | File | 11.09 KB | 0644 |
|
import2.php | File | 34.16 KB | 0644 |
|
import3.php | File | 22.72 KB | 0644 |
|
import4.php | File | 16.86 KB | 0644 |
|
importadmin.php | File | 17.08 KB | 0644 |
|
importsimple.php | File | 7.32 KB | 0644 |
|
index.php | File | 32.82 KB | 0644 |
|
info.php | File | 1.07 KB | 0644 |
|
init.php | File | 27.36 KB | 0644 |
|
initialise.php | File | 12.05 KB | 0644 |
|
initlanguages.php | File | 867 B | 0644 |
|
languages.php | File | 21.37 KB | 0644 |
|
lib.php | File | 86.79 KB | 0644 |
|
list.php | File | 11.32 KB | 0644 |
|
listbounces.php | File | 4.13 KB | 0644 |
|
login.php | File | 6.39 KB | 0644 |
|
logout.php | File | 865 B | 0644 |
|
massremove.php | File | 2.55 KB | 0644 |
|
mclicks.php | File | 7.28 KB | 0644 |
|
members.php | File | 19.99 KB | 0644 |
|
mergeduplicates.php | File | 4.48 KB | 0644 |
|
message.php | File | 9.08 KB | 0644 |
|
messages.php | File | 26.27 KB | 0644 |
|
minify.txt | File | 201 B | 0644 |
|
msgbounces.php | File | 3.4 KB | 0644 |
|
msgstatus.php | File | 1.27 KB | 0644 |
|
mviews.php | File | 6.27 KB | 0644 |
|
mysql.inc | File | 40 B | 0644 |
|
mysqli.inc | File | 14.02 KB | 0644 |
|
pageaction.php | File | 1.11 KB | 0644 |
|
phpListAdminAuthentication.php | File | 6.82 KB | 0644 |
|
pluginlib.php | File | 9.43 KB | 0644 |
|
plugins.php | File | 17.78 KB | 0644 |
|
preparesend.php | File | 669 B | 0644 |
|
processbounces.php | File | 35.36 KB | 0644 |
|
processqueue.php | File | 3.71 KB | 0644 |
|
readtestmail.php | File | 11.59 KB | 0644 |
|
reconcileusers.php | File | 27.71 KB | 0644 |
|
redirecttoupdater.php | File | 187 B | 0644 |
|
reindex.php | File | 1.82 KB | 0644 |
|
rsslib.php | File | 3.17 KB | 0644 |
|
runcommand.php | File | 583 B | 0644 |
|
send.php | File | 6.17 KB | 0644 |
|
send_core.php | File | 63.91 KB | 0644 |
|
sendemaillib.php | File | 69.84 KB | 0644 |
|
sendprepared.php | File | 4.87 KB | 0644 |
|
sessionlib.php | File | 2.7 KB | 0644 |
|
setpermissions.php | File | 2.08 KB | 0644 |
|
setup.php | File | 2.56 KB | 0644 |
|
spage.php | File | 4.35 KB | 0644 |
|
spageedit.php | File | 19.08 KB | 0644 |
|
statsmgt.php | File | 1.23 KB | 0644 |
|
statsoverview.php | File | 6.19 KB | 0644 |
|
stresstest.php | File | 4.82 KB | 0644 |
|
structure.php | File | 29.21 KB | 0644 |
|
subscribelib2.php | File | 70.22 KB | 0644 |
|
subscriberstats.php | File | 617 B | 0644 |
|
suppressionlist.php | File | 1.71 KB | 0644 |
|
system.php | File | 795 B | 0644 |
|
systemstats.php | File | 5.73 KB | 0644 |
|
template.php | File | 16.4 KB | 0644 |
|
templates.php | File | 3.01 KB | 0644 |
|
tests.php | File | 1.67 KB | 0644 |
|
uclicks.php | File | 6.74 KB | 0644 |
|
update.php | File | 187 B | 0644 |
|
updateLib.php | File | 2.2 KB | 0644 |
|
updatetlds.php | File | 358 B | 0644 |
|
updatetranslation.php | File | 2.51 KB | 0644 |
|
upgrade.php | File | 23.82 KB | 0644 |
|
user.php | File | 23.08 KB | 0644 |
|
usercheck.php | File | 2.55 KB | 0644 |
|
userclicks.php | File | 11.57 KB | 0644 |
|
userhistory.php | File | 8.25 KB | 0644 |
|
usermgt.php | File | 1.9 KB | 0644 |
|
users.php | File | 19.3 KB | 0644 |
|
vCard.php | File | 1.9 KB | 0644 |
|
viewmessage.php | File | 635 B | 0644 |
|
viewtemplate.php | File | 1.86 KB | 0644 |
|
vote.php | File | 38 B | 0644 |
|