<?php require_once dirname(__FILE__).'/accesscheck.php'; $subselect = $where = ''; $action_result = ''; $access = accessLevel('messages'); $messageSortOptions = array( 'default' => s('Sort by'), 'subjectasc' => s('Subject'). ' - '.s('Ascending'), 'subjectdesc' => s('Subject'). ' - '.s('Descending'), 'enteredasc' => s('Entered'). ' - '.s('Ascending'), 'entereddesc' => s('Entered'). ' - '.s('Descending'), 'embargoasc' => s('Embargo'). ' - '.s('Ascending'), 'embargodesc' => s('Embargo'). ' - '.s('Descending'), 'sentasc' => s('Sent'). ' - '.s('Ascending'), 'sentdesc' => s('Sent'). ' - '.s('Descending'), ); if( !$GLOBALS["require_login"] || $_SESSION["logindetails"]['superuser'] || $access == 'all'){ $ownerselect_and = ''; $ownerselect_where = ''; } else { $ownerselect_where = ' where owner = ' . $_SESSION["logindetails"]['id']; $ownerselect_and = ' and owner = ' . $_SESSION["logindetails"]['id']; } if (isset($_GET['start'])) { $start = sprintf('%d',$_GET['start']); } else { unset($start); } if (!isset($_SESSION['messagefilter'])) { $_SESSION['messagefilter'] = ''; } if (!empty($_POST['clear'])) { $_SESSION['messagefilter'] = ''; $_SESSION['messagesortby'] = ''; $_SESSION['messagenumpp'] = MAX_MSG_PP; unset($_POST['filter']); unset($_POST['numPP']); unset($_POST['sortBy']); } if (isset($_POST['filter'])) { $_SESSION['messagefilter'] = removeXSS($_POST['filter']); if ($_SESSION['messagefilter'] == ' --- filter --- ') { $_SESSION['messagefilter'] = ''; } } if (!isset($_SESSION['messagenumpp'])) { $_SESSION['messagenumpp'] = MAX_MSG_PP; } if (isset($_POST['numPP'])) { $_SESSION['messagenumpp'] = sprintf('%d',$_POST['numPP']); if ($_SESSION['messagenumpp'] <= 0) { $_SESSION['messagenumpp'] = MAX_MSG_PP; } } # remember last one listed if (!isset($_GET["tab"]) && !empty($_SESSION["lastmessagetype"])) { $_GET["tab"] = $_SESSION["lastmessagetype"]; } elseif (isset($_GET["tab"])) { $_SESSION["lastmessagetype"] = $_GET["tab"]; } if (!isset($_SESSION['messagesortby'])) { $_SESSION['messagesortby'] = ''; } if (isset($_POST['sortBy'])) { if (in_array($_POST['sortBy'],array_keys($messageSortOptions))) { $_SESSION['messagesortby'] = $_POST['sortBy']; } } print '<div class="actions"><div class="fright">'; print PageLinkActionButton('send&new=1',$GLOBALS['I18N']->get('Start a new campaign')); print '</div><div class="clear"></div></div>'; ### Print tabs $tabs = new WebblerTabs(); $tabs->addTab($GLOBALS['I18N']->get("sent"),PageUrl2("messages&tab=sent"),'sent'); $tabs->addTab($GLOBALS['I18N']->get("active"),PageUrl2("messages&tab=active"),'active'); $tabs->addTab($GLOBALS['I18N']->get("draft"),PageUrl2("messages&tab=draft"),'draft'); #$tabs->addTab($GLOBALS['I18N']->get("queued"),PageUrl2("messages&tab=queued"));# if (USE_PREPARE) { $tabs->addTab($GLOBALS['I18N']->get("static"),PageUrl2("messages&tab=static"),'static'); } //obsolete, moved to rssmanager plugin #if (ENABLE_RSS) { # $tabs->addTab("rss",PageUrl2("messages&tab=rss")); #} if (!empty($_GET['tab'])) { $tabs->setCurrent($_GET["tab"]); } else { $_GET['tab'] = 'sent'; $tabs->setCurrent('sent'); } print '<div class="minitabs">'; print $tabs->display(); print '</div>'; $filterDisplay = $_SESSION['messagefilter']; if ($filterDisplay == '') { $filterDisplay = ' --- filter --- '; } print '<div id="messagefilter" class="filterdiv fright">'; print formStart(' id="messagefilterform" '); print '<div><input type="text" name="filter" value="'.htmlspecialchars($filterDisplay).'" id="filtertext" />'; print '<select name="numPP" class="numppOptions">'; foreach (array(5,10,15,20,50,100) as $numppOption) { if ($numppOption == $_SESSION['messagenumpp']) { print '<option selected="selected">'. $numppOption. '</option>'; } else { print '<option>'. $numppOption. '</option>'; } } print '</select>'; print '<select name="sortBy" class="sortby">'; foreach ($messageSortOptions as $sortOption => $sortOptionLabel) { if ($sortOption == $_SESSION['messagesortby']) { print '<option selected="selected" value="'.$sortOption.'">'. $sortOptionLabel. '</option>'; } else { print '<option value="'.$sortOption.'">'. $sortOptionLabel. '</option>'; } } print '</select>'; print '<button type="submit" name="go" id="filterbutton" >'.s('Go').'</button> <button type="submit" name="clear" id="filterclearbutton" value="1">'.s('Clear').'</button></div>'; print '</form></div>'; ### Process 'Action' requests if (!empty($_GET["delete"])) { verifyCsrfGetToken(); $todelete = array(); if ($_GET["delete"] == "draft") { $req = Sql_Query(sprintf('select id from %s where status = "draft" and (subject = "" or subject = "(no subject)") %s',$GLOBALS['tables']["message"],$ownerselect_and)); while ($row = Sql_Fetch_Row($req)) { array_push($todelete,$row[0]); } } else { array_push($todelete,sprintf('%d',$_GET["delete"])); } foreach ($todelete as $delete) { $action_result .= $GLOBALS['I18N']->get("Deleting")." $delete ..."; $del = deleteMessage($delete); if ($del) $action_result .= "... ".$GLOBALS['I18N']->get("Done"); else $action_result .= "... ".$GLOBALS['I18N']->get("failed"); $action_result .= '<br/>'; } $action_result .= "<hr /><br />\n"; } if (isset($_GET['resend'])) { verifyCsrfGetToken(); $resend = sprintf('%d',$_GET['resend']); # requeue the message in $resend $action_result .= $GLOBALS['I18N']->get("Requeuing")." $resend .."; $result = Sql_Query("update ${tables['message']} set status = 'submitted', sendstart = null where id = $resend"); $suc6 = Sql_Affected_Rows(); # only send it again to users, if we are testing, otherwise only to new users if (TEST) { $result = Sql_query("delete from ${tables['usermessage']} where messageid = $resend"); } if ($suc6) { $action_result .= "... ".$GLOBALS['I18N']->get("Done"); foreach ($GLOBALS['plugins'] as $pluginname => $plugin) { $plugin->messageReQueued($resend); } Sql_Query(sprintf('delete from %s where id = %d and (name = "start_notified" or name = "end_notified")',$tables['messagedata'],$resend)); $messagedata = loadMessageData($resend); $finishSending = mktime($messagedata['finishsending']['hour'],$messagedata['finishsending']['minute'],0, $messagedata['finishsending']['month'],$messagedata['finishsending']['day'],$messagedata['finishsending']['year']); if ($finishSending < time()) { $action_result .= '<br />'.s('This campaign is scheduled to stop sending in the past. No mails will be sent.'); $action_result .= '<br />'.PageLinkButton('send&id='.$messagedata['id'].'&tab=Scheduling',s('Review Scheduling')); } if (getConfig('pqchoice') == 'phplistdotcom') { $action_result .= activateRemoteQueue(); } } else { $action_result .= "... ".$GLOBALS['I18N']->get("failed"); } $action_result .= '<br />'; } if (isset($_GET['suspend'])) { verifyCsrfGetToken(); $suspend = sprintf('%d',$_GET['suspend']); $action_result .= $GLOBALS['I18N']->get('Suspending')." $suspend .."; $result = Sql_query(sprintf('update %s set status = "suspended" where id = %d and (status = "inprocess" or status = "submitted") %s',$tables["message"],$suspend,$ownerselect_and)); $suc6 = Sql_Affected_Rows(); if ($suc6) $action_result .= "... ".$GLOBALS['I18N']->get("Done"); else $action_result .= "... ".$GLOBALS['I18N']->get("failed"); $action_result .= '<br /><hr /><br />'; } #0012081: Add new 'Mark as sent' button if (isset($_GET['markSent'])) { verifyCsrfGetToken(); $markSent = sprintf('%d',$_GET['markSent']); $action_result .= $GLOBALS['I18N']->get('Marking as sent ')." $markSent .."; $result = Sql_query(sprintf('update %s set status = "sent" where id = %d and (status = "suspended") %s',$tables["message"],$markSent,$ownerselect_and)); $suc6 = Sql_Affected_Rows(); if ($suc6) $action_result .= "... ".$GLOBALS['I18N']->get("Done"); else $action_result .= "... ".$GLOBALS['I18N']->get("Failed"); $action_result .= '<br /><hr /><br />'; } if (isset($_GET['action'])) { verifyCsrfGetToken(); switch ($_GET['action']) { case 'suspall': $action_result .= $GLOBALS['I18N']->get('Suspending all')." .."; $result = Sql_query(sprintf('update %s set status = "suspended" where (status = "inprocess" or status = "submitted") %s',$tables["message"],$ownerselect_and)); $suc6 = Sql_Affected_Rows(); if ($suc6) $action_result .= "... $suc6 ".$GLOBALS['I18N']->get("Done"); else $action_result .= "... ".$GLOBALS['I18N']->get("Failed"); $action_result .= '<br /><hr /><br />'; break; case 'markallsent': $action_result .= $GLOBALS['I18N']->get('Marking all as sent ')." .."; $result = Sql_query(sprintf('update %s set status = "sent" where (status = "suspended") %s',$tables["message"],$markSent,$ownerselect_and)); $suc6 = Sql_Affected_Rows(); if ($suc6) $action_result .= "... $suc6 ".$GLOBALS['I18N']->get("Done"); else $action_result .= "... ".$GLOBALS['I18N']->get("Failed"); $action_result .= '<br /><hr /><br />'; break; } } if (!empty($action_result)) { #print ActionResult($action_result); $_SESSION['action_result'] = $action_result; Redirect('messages'); exit; } $cond = array(); ### Switch tab switch ($_GET["tab"]) { case "queued": # $subselect = ' status in ("submitted") and (rsstemplate is NULL or rsstemplate = "") '; $cond[] = " status in ('submitted', 'suspended') "; $url_keep = '&tab=queued'; break; case "static": $cond[] = " status in ('prepared') "; $url_keep = '&tab=static'; break; # case "rss": # $subselect = ' rsstemplate != ""'; # $url_keep = '&tab=sent'; # break; case "draft": $cond[] = " status in ('draft') "; $url_keep = '&tab=draft'; break; case "active": $cond[] = " status in ('inprocess','submitted', 'suspended') "; $url_keep = '&tab=active'; break; case "sent": default: $cond[] = " status in ('sent') "; $url_keep = '&tab=sent'; break; } if (!empty($_SESSION['messagefilter'])) { $cond[] = ' subject like "%'.sql_escape($_SESSION['messagefilter']).'%" '; } ### Query messages from db if ($GLOBALS['require_login'] && !$_SESSION['logindetails']['superuser'] || $access != 'all') { $cond[] = ' owner = ' . $_SESSION['logindetails']['id']; } $where = ' where ' . join(' and ', $cond); $sortBySql = 'order by entered desc'; switch ($_SESSION['messagesortby']) { case 'sentasc': $sortBySql = 'order by sent asc'; break; case 'sentdesc': $sortBySql = 'order by sent desc'; break; case 'subjectasc': $sortBySql = 'order by subject asc'; break; case 'subjectdesc': $sortBySql = 'order by subject desc'; break; case 'enteredasc': $sortBySql = 'order by entered asc'; break; case 'entereddesc': $sortBySql = 'order by entered desc'; break; case 'embargoasc': $sortBySql = 'order by embargo asc'; break; case 'embargodesc': $sortBySql = 'order by embargo desc'; break; default: $sortBySql = 'order by embargo desc, entered desc'; } $req = Sql_query('select count(*) from ' . $tables['message']. $where .' '.$sortBySql); $total_req = Sql_Fetch_Row($req); $total = $total_req[0]; ## Browse buttons table $limit = $_SESSION['messagenumpp']; $offset = 0; if (isset($start) && $start > 0) { $offset = $start; } else { $start = 0; } $paging = ''; if ($total > $_SESSION['messagenumpp']) { $paging = simplePaging("messages$url_keep",$start,$total,$_SESSION['messagenumpp'],$GLOBALS['I18N']->get("Campaigns")); } $ls = new WebblerListing(s('Campaigns')); $ls->usePanel($paging); ## messages table if ($total) { $result = Sql_query("SELECT * FROM ".$tables["message"]." $where $sortBySql limit $limit offset $offset"); while ($msg = Sql_fetch_array($result)) { $editlink = ''; $listingelement = '<!--'.$msg['id'].'-->'.stripslashes($msg["subject"]); if ($msg['status'] == 'draft') { $editlink = PageUrl2("send&id=".$msg["id"]); } $ls->addElement($listingelement,$editlink); $ls->setClass($listingelement,'row1'); $uniqueviews = Sql_Fetch_Row_Query("select count(userid) from {$tables["usermessage"]} where viewed is not null and status = 'sent' and messageid = ".$msg["id"]); $clicks = Sql_Fetch_Row_Query("select sum(clicked) from {$tables["linktrack_ml"]} where messageid = ".$msg["id"]); # $clicks = array(0); $messagedata = loadMessageData($msg['id']); /* foreach ($messagedata as $key => $val) { $ls->addColumn($listingelement,$key,$val); } */ $ls->addColumn($listingelement,$GLOBALS['I18N']->get("Entered"), formatDateTime($msg["entered"])); $_GET['id'] = $msg['id']; $statusdiv = '<div id="messagestatus'.$msg['id'].'">'; include 'actions/msgstatus.php'; $statusdiv .= $status; $statusdiv .= '</div>'; $GLOBALS['pagefooter']['statusupdate'.$msg['id']] = '<script type="text/javascript"> updateMessages.push('.$msg['id'].');</script>'; $GLOBALS['pagefooter']['statusupdate'] = '<script type="text/javascript">window.setInterval("messagesStatusUpdate()",5000);</script>'; if ($msg['status'] == 'sent') { $statusdiv = $GLOBALS['I18N']->get("Sent").": ".$msg['sent']; } $ls->addColumn($listingelement,$GLOBALS['I18N']->get("Status"),$statusdiv); if ($msg['status'] != 'draft') { # $ls->addColumn($listingelement,$GLOBALS['I18N']->get("total"), $msg['astext'] + $msg['ashtml'] + $msg['astextandhtml'] + $msg['aspdf'] + $msg['astextandpdf']); # $ls->addColumn($listingelement,$GLOBALS['I18N']->get("text"), $msg['astext']); # $ls->addColumn($listingelement,$GLOBALS['I18N']->get("html"), $msg["ashtml"] + $msg["astextandhtml"]); # if (!empty($msg['aspdf'])) { # $ls->addColumn($listingelement,$GLOBALS['I18N']->get("PDF"), $msg['aspdf']); # } # if (!empty($msg["astextandpdf"])) { # $ls->addColumn($listingelement,$GLOBALS['I18N']->get("both"), $msg["astextandpdf"]); # } $resultStats = '<table class="messagesendstats"> <tr><td>'.s('Viewed').'</td><td>'.$msg['viewed'].'</td></tr> <tr><td>'.s('Unique Views').'</td><td>'.$uniqueviews[0].'</td></tr>'; if ($clicks[0]) { $resultStats .= ' <tr><td>'.s('Clicks').'</td><td>'.$clicks[0].'</td></tr>'; } $resultStats .= ' <tr><td>'.s('Bounced').'</td><td>'.$msg['bouncecount'].'</td></tr>'; $resultStats .= '</table>'; // $ls->addColumn($listingelement,s('Results'),$resultStats); //$ls->addColumn($listingelement,$GLOBALS['I18N']->get("Viewed"), $msg["viewed"]); //$ls->addColumn($listingelement,$GLOBALS['I18N']->get("Unique Views"), $uniqueviews[0]); //if ($clicks[0]) { //$ls->addColumn($listingelement,$GLOBALS['I18N']->get("Clicks"), $clicks[0]); //} //$ls->addColumn($listingelement,$GLOBALS['I18N']->get("Bounced"), $msg["bouncecount"]); } if ($msg['status'] == 'sent') { $timetosend = $GLOBALS['I18N']->get("Time to send").': '.timeDiff($msg["sendstart"],$msg["sent"]); } else { $timetosend = ''; } $colspan = 3; if (!empty($msg['aspdf'])) $colspan++; if (!empty($msg['astextandpdf'])) $colspan++; $clicksrow = $bouncedrow = ''; //if ($clicks[0]) { //$clicksrow = sprintf('<tr><td colspan="%d">%s</td><td>%d</td></tr>', //$colspan-1,$GLOBALS['I18N']->get("Clicks"),$clicks[0]); //} //if ($msg["bouncecount"]) { //$bouncedrow = sprintf('<tr><td colspan="%d">%s</td><td>%d</td></tr>', //$colspan-1,$GLOBALS['I18N']->get("Bounced"),$msg["bouncecount"]); //} $sendstats = sprintf('<table class="messagesendstats"> %s <tr><td>'.$GLOBALS['I18N']->get("total").'</td><td>'.$GLOBALS['I18N']->get("text").'</td><td>'.$GLOBALS['I18N']->get("html").'</td> %s%s </tr> <tr><td><b>%d</b></td><td><b>%d</b></td><td><b>%d</b></td> %s %s %s %s </tr> </table>', !empty($timetosend) ? '<tr><td colspan="'.$colspan.'">'.$timetosend.'</td></tr>' : '', !empty($msg['aspdf']) ? '<td>'.$GLOBALS['I18N']->get("PDF").'</td>':'', !empty($msg['astextandpdf']) ? '<td>'.$GLOBALS['I18N']->get("both").'</td>':'', $msg['astext'] + $msg['ashtml'] + $msg['astextandhtml'] + $msg['aspdf'] + $msg['astextandpdf'], $msg["astext"], $msg["ashtml"] + $msg["astextandhtml"], //bug 0009687 !empty($msg['aspdf']) ? '<td><b>'.$msg["aspdf"].'</b></td>':'', !empty($msg['astextandpdf']) ? '<td><b>'.$msg["astextandpdf"].'</b></td>':'', $clicksrow,$bouncedrow ); if ($msg['status'] != 'draft') { $ls->addRow($listingelement,'', $resultStats.$sendstats); } $actionbuttons = ''; if ($msg['status'] == 'inprocess' || $msg['status'] == 'submitted') { $actionbuttons .= '<span class="suspend">'.PageLinkButton('messages&suspend='.$msg['id'],$GLOBALS['I18N']->get('Suspend'), '', '', s('Suspend')).'</span>'; } elseif ($msg['status'] != 'draft') { $actionbuttons .= '<span class="resend">'.PageLinkButton("messages",$GLOBALS['I18N']->get("Requeue"),"resend=".$msg["id"], '', s('Requeue')).'</span>'; } #0012081: Add new 'Mark as sent' button if ($msg['status'] == 'suspended') { $actionbuttons .= '<span class="marksent">'.PageLinkButton('messages&markSent='.$msg['id'],$GLOBALS['I18N']->get('Mark sent'), '', '', s('Mark sent')).'</span>'; $actionbuttons .= '<span class="edit">'.PageLinkButton("send",$GLOBALS['I18N']->get("Edit"),"id=".$msg["id"], '', s('Edit')).'</span>'; } elseif ($msg['status'] == 'draft' || !empty($messagedata['istestcampaign'])) { ## only draft messages should be deletable, the rest isn't $deletebutton = new ConfirmButton( s('Are you sure you want to delete this campaign?'), PageURL2("messages$url_keep&delete=".$msg["id"]), s('delete this campaign')); # $actionbuttons .= sprintf('<span class="delete"><a href="javascript:deleteRec(\'%s\');" class="button" title="'.$GLOBALS['I18N']->get("delete").'">'.$GLOBALS['I18N']->get("delete").'</a></span>',PageURL2("messages$url_keep","","delete=".$msg["id"])); $actionbuttons .= '<span class="delete">'.$deletebutton->show().'</span>'; $actionbuttons .= '<span class="edit">'.PageLinkButton("send",$GLOBALS['I18N']->get("Edit"),"id=".$msg["id"], '', s('Edit')).'</span>'; } $actionbuttons .= '<span class="view">'.PageLinkButton("message",$GLOBALS['I18N']->get("View"),"id=".$msg["id"], '', s('View')).'</span>'; if ($clicks[0] && CLICKTRACK) { $actionbuttons .= '<span class="stats">'.PageLinkButton("statsoverview",$GLOBALS['I18N']->get("statistics"),"id=".$msg["id"], '', s('Statistics')).'</span>'; } $ls->addColumn($listingelement,$GLOBALS['I18N']->get("Action"), '<div class="messageactions">'.$actionbuttons.'</div>'); } } print $ls->display(); if ($total > 5 && $_GET['tab'] == 'active') { print PageLinkButton("messages",$GLOBALS['I18N']->get("Suspend All"),"action=suspall"); print PageLinkButton("messages",$GLOBALS['I18N']->get("Mark All Sent"),"action=markallsent"); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
FCKeditor | Folder | 0755 |
|
|
PEAR | Folder | 0755 |
|
|
PHPMailer | Folder | 0755 |
|
|
PHPMailer6 | Folder | 0755 |
|
|
actions | Folder | 0755 |
|
|
auth | Folder | 0755 |
|
|
commonlib | Folder | 0755 |
|
|
css | Folder | 0755 |
|
|
data | Folder | 0755 |
|
|
help | Folder | 0755 |
|
|
images | Folder | 0755 |
|
|
inc | Folder | 0755 |
|
|
info | Folder | 0755 |
|
|
js | Folder | 0755 |
|
|
lan | Folder | 0755 |
|
|
locale | Folder | 0755 |
|
|
oldmailer | Folder | 0755 |
|
|
onyxrss | Folder | 0755 |
|
|
plugins | Folder | 0755 |
|
|
styles | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
ui | Folder | 0755 |
|
|
uploadimages | Folder | 0755 |
|
|
.gitignore | File | 20 B | 0644 |
|
.htaccess | File | 171 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 |
|
about.php | File | 4.22 KB | 0644 |
|
accesscheck.php | File | 1.51 KB | 0644 |
|
addprefix.php | File | 966 B | 0644 |
|
adduser.php | File | 46 B | 0644 |
|
admin.php | File | 10.68 KB | 0644 |
|
adminattributes.php | File | 6.39 KB | 0644 |
|
admins.php | File | 4.54 KB | 0644 |
|
adodb.inc | File | 6.49 KB | 0644 |
|
analytics.php | File | 2.84 KB | 0644 |
|
attributes.php | File | 102 B | 0644 |
|
blacklistemail.php | File | 1.04 KB | 0644 |
|
bounce.php | File | 10.09 KB | 0644 |
|
bouncemgt.php | File | 1.39 KB | 0644 |
|
bouncerule.php | File | 3 KB | 0644 |
|
bouncerules.php | File | 5.86 KB | 0644 |
|
bounces.php | File | 6.01 KB | 0644 |
|
catlists.php | File | 2.64 KB | 0644 |
|
checkbouncerules.php | File | 1.34 KB | 0644 |
|
checki18n.php | File | 2.69 KB | 0644 |
|
checkprerequisites.php | File | 1.05 KB | 0644 |
|
class.html.mime.mail-outlookfix.inc | File | 19.93 KB | 0644 |
|
class.html.mime.mail.inc | File | 19.35 KB | 0644 |
|
class.image.inc | File | 5.77 KB | 0644 |
|
class.phplistmailer.php | File | 24.23 KB | 0644 |
|
class.phplistmailerbase.php | File | 1.5 KB | 0644 |
|
community.php | File | 1.78 KB | 0644 |
|
communityfeed.php | File | 2.36 KB | 0644 |
|
configure.php | File | 5.25 KB | 0644 |
|
connect.php | File | 74.36 KB | 0644 |
|
convertstats.php | File | 5.51 KB | 0644 |
|
converttoutf8.php | File | 3.77 KB | 0644 |
|
cron.php | File | 3.37 KB | 0644 |
|
date.php | File | 6.08 KB | 0644 |
|
dbcheck.php | File | 111 B | 0644 |
|
defaultFrontendTexts.php | File | 9.57 KB | 0644 |
|
defaultconfig.inc | File | 23.52 KB | 0644 |
|
defaultconfig.php | File | 24.92 KB | 0644 |
|
defaultplugin.php | File | 23.31 KB | 0644 |
|
defaults.php | File | 2.83 KB | 0644 |
|
defaultsystemtemplate.php | File | 1.83 KB | 0644 |
|
defaulttest.php | File | 1.12 KB | 0644 |
|
dlusers.php | File | 232 B | 0644 |
|
domainbounces.php | File | 507 B | 0644 |
|
domainstats.php | File | 2.83 KB | 0644 |
|
editattributes.php | File | 6.7 KB | 0644 |
|
editlist.php | File | 6.79 KB | 0644 |
|
error_log | File | 274 B | 0644 |
|
eventlog.php | File | 4.49 KB | 0644 |
|
export.php | File | 4.84 KB | 0644 |
|
exportuserdata.php | File | 6.36 KB | 0644 |
|
fckphplist.php | File | 43.21 KB | 0644 |
|
footer.inc | File | 1.19 KB | 0644 |
|
footer.old.inc | File | 1.82 KB | 0644 |
|
gchart.php | File | 869 B | 0644 |
|
generatebouncerules.php | File | 5.24 KB | 0644 |
|
getrss.php | File | 3.94 KB | 0644 |
|
header.inc | File | 1.75 KB | 0644 |
|
home.php | File | 16.36 KB | 0644 |
|
hostedprocessqueuesetup.php | File | 1.64 KB | 0644 |
|
htaccess | File | 311 B | 0644 |
|
image.php | File | 795 B | 0644 |
|
import.php | File | 2.54 KB | 0644 |
|
import1.php | File | 9.41 KB | 0644 |
|
import2.php | File | 243 B | 0644 |
|
import3.php | File | 20.26 KB | 0644 |
|
import4.php | File | 15.63 KB | 0644 |
|
importadmin.php | File | 14.5 KB | 0644 |
|
importlib.php | File | 2.86 KB | 0644 |
|
importsimple.php | File | 5.84 KB | 0644 |
|
index.php | File | 22.53 KB | 0644 |
|
index.php.old | File | 22.53 KB | 0644 |
|
info.php | File | 1.01 KB | 0644 |
|
init.php | File | 21.7 KB | 0644 |
|
initialise.php | File | 10.02 KB | 0644 |
|
initlanguages.php | File | 794 B | 0644 |
|
languages.php | File | 22.43 KB | 0644 |
|
lib.php | File | 59.85 KB | 0644 |
|
list.php | File | 11.79 KB | 0644 |
|
listbounces.php | File | 4.64 KB | 0644 |
|
login.php | File | 6.05 KB | 0755 |
|
logout.php | File | 224 B | 0644 |
|
massremove.php | File | 1.81 KB | 0644 |
|
massunconfirm.php | File | 1.52 KB | 0644 |
|
mclicks.php | File | 9.55 KB | 0644 |
|
members.php | File | 16.58 KB | 0644 |
|
mergeduplicates.php | File | 4.28 KB | 0644 |
|
message.php | File | 7.27 KB | 0644 |
|
messages.php | File | 18.94 KB | 0644 |
|
mimePart.php | File | 10.7 KB | 0644 |
|
minify.txt | File | 201 B | 0644 |
|
msgbounces.php | File | 3.79 KB | 0644 |
|
msgstatus.php | File | 1.18 KB | 0644 |
|
mviews.php | File | 7.88 KB | 0644 |
|
mysql.inc | File | 11.19 KB | 0644 |
|
mysqli.inc | File | 11.58 KB | 0644 |
|
pageaction.php | File | 1.08 KB | 0644 |
|
pagetop.php | File | 1.17 KB | 0644 |
|
phpListAdminAuthentication.php | File | 7.2 KB | 0644 |
|
pluginlib.php | File | 6.39 KB | 0644 |
|
plugins.php | File | 10.32 KB | 0644 |
|
preparesend.php | File | 627 B | 0644 |
|
processbounces.php | File | 29.71 KB | 0644 |
|
processqueue.php | File | 3.73 KB | 0644 |
|
purgerss.php | File | 1.38 KB | 0644 |
|
readtestmail.php | File | 11.26 KB | 0644 |
|
reconcileusers.php | File | 25.16 KB | 0644 |
|
redirecttoupdater.php | File | 170 B | 0644 |
|
reindex.php | File | 1.69 KB | 0644 |
|
rsslib.php | File | 2.8 KB | 0644 |
|
runcommand.php | File | 583 B | 0644 |
|
send.php | File | 5.58 KB | 0644 |
|
send_core.php | File | 56.08 KB | 0644 |
|
sendemaillib.php | File | 64.2 KB | 0644 |
|
sendprepared.php | File | 4.33 KB | 0644 |
|
sessionlib.php | File | 2.92 KB | 0644 |
|
setpermissions.php | File | 1.57 KB | 0644 |
|
setup.php | File | 3.21 KB | 0644 |
|
sidebar.php | File | 2.67 KB | 0644 |
|
spage.php | File | 3.29 KB | 0644 |
|
spageedit.php | File | 17.07 KB | 0644 |
|
statsmgt.php | File | 1.22 KB | 0644 |
|
statsoverview.php | File | 7.62 KB | 0644 |
|
stresstest.php | File | 5.1 KB | 0644 |
|
structure.php | File | 26.79 KB | 0644 |
|
subscribelib2.php | File | 66.02 KB | 0644 |
|
subscriberstats.php | File | 591 B | 0644 |
|
suppressionlist.php | File | 1.71 KB | 0644 |
|
system.php | File | 784 B | 0644 |
|
systemstats.php | File | 7.71 KB | 0644 |
|
template.php | File | 12.72 KB | 0644 |
|
templates.php | File | 3.02 KB | 0644 |
|
tests.php | File | 1.57 KB | 0644 |
|
uclicks.php | File | 6.52 KB | 0644 |
|
update.php | File | 187 B | 0644 |
|
updateLib.php | File | 2.77 KB | 0644 |
|
updatetlds.php | File | 399 B | 0644 |
|
updatetranslation.php | File | 1.94 KB | 0644 |
|
upgrade.php | File | 29.03 KB | 0644 |
|
user.php | File | 2.35 KB | 0644 |
|
usercheck.php | File | 2.27 KB | 0644 |
|
userclicks.php | File | 8 KB | 0644 |
|
userhistory.php | File | 127 B | 0644 |
|
usermgt.php | File | 1.83 KB | 0644 |
|
users.php | File | 393 B | 0644 |
|
vCard.php | File | 1.9 KB | 0644 |
|
viewmessage.php | File | 610 B | 0644 |
|
viewrss.php | File | 4.07 KB | 0644 |
|
viewtemplate.php | File | 1.82 KB | 0644 |
|
vote.php | File | 38 B | 0644 |
|