[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.119.128.75: ~ $
<?php
require_once dirname(__FILE__).'/accesscheck.php';
if (!defined('PHPLISTINIT')) {
    exit;
}

$types = array('textline', 'checkbox', 'checkboxgroup', 'radio', 'select', 'hidden', 'textarea', 'date');
if ((defined('IN_WEBBLER') && IN_WEBBLER) || (defined('WEBBLER') && WEBBLER)) {
    $types[] = 'avatar';
}

$formtable_exists = Sql_Table_exists('formfield');

//ob_end_flush();
//foreach ($_POST as $key => $val) {
//  print "$key = ".print_r($val)."<br/>";
//}
//return;
echo '<div class="panel"><div class="header"></div><div class="content">';
if (isset($_POST['action'])) {
    if (isset($_POST['name'])) {
        foreach ($_POST['name'] as $id => $val) {
            if (!$id && isset($_POST['name'][0]) && $_POST['name'][0] != '') {
                // it is a new one
                $lc_name = getNewAttributeTablename($_POST['name'][0]);
                if ($lc_name == 'email') {
                    echo Warn(s('Email is a system attribute'));
                }

                //print "New attribute: ".$lc_name."<br/>";
                if (empty($_POST['required'][0])) {
                    $nRequired = 0;
                } else {
                    $nRequired = $_POST['required'][0];
                }

                $query = sprintf('insert into %s (name,type,listorder,default_value,required,tablename) values("%s","%s",%d,"%s",%d,"%s")',
                    $tables['attribute'], sql_escape(strip_tags($_POST['name'][0])), sql_escape($_POST['type'][0]),
                    $_POST['listorder'][0], sql_escape($_POST['default'][0]), $nRequired, $lc_name);
                Sql_Query($query);
                $insertid = Sql_Insert_id();
                // text boxes and hidden fields do not have their own table
                if ($_POST['type'][$id] != 'textline' && $_POST['type'][$id] != 'hidden') {
                    $query = "create table $table_prefix"."listattr_$lc_name (id integer not null primary key auto_increment, name varchar(255), unique (name(150)), listorder integer default 0)";
                    Sql_Query($query);
                } else {
                    // and they cannot currently be required, changed 29/08/01, insert javascript to require them, except for hidden ones :-)
                    if (isset($_POST['type'][$id]) && $_POST['type'][$id] == 'hidden') {
                        Sql_Query("update {$tables['attribute']} set required = 0 where id = $insertid");
                    }
                }
                if ($_POST['type'][$id] == 'checkbox') {
                    // with a checkbox we know the values
//          Sql_Query('insert into '.$table_prefix.'listattr_'.$lc_name.' (name) values("Checked")');
//          Sql_Query('insert into '.$table_prefix.'listattr_'.$lc_name.' (name) values("Unchecked")');
                    // we cannot "require" checkboxes, that does not make sense
                    Sql_Query("update {$tables['attribute']} set required = 1 where id = $insertid");
                }
                if ($_POST['type'][$id] == 'checkboxgroup') {
                    Sql_Query("update {$tables['attribute']} set required = 0 where id = $insertid");
                }

                // fix all existing users to have a record for this attribute, even with empty data
                $req = Sql_Query("select id from {$tables['user']}");
                while ($row = Sql_Fetch_Row($req)) {
                    Sql_Query(sprintf('insert ignore into %s (attributeid,userid) values(%d,%d)',
                        $tables['user_attribute'], $insertid, $row[0]));
                }
            } elseif ($_POST['name'][$id] != '') {
                // it is a change
                // get the original type

                $req = Sql_Fetch_Row_Query("select type,tablename from {$tables['attribute']} where id = $id");
                $existingtype = $req[0];
                //print "Existing attribute: ".$_POST["name"][$id]." new type:".$_POST["type"][$id]." existing type: ".$req[0]."<br/>";
                if ($_POST['type'][$id] != $existingtype) {
                    switch ($existingtype) {
                        case 'textline':
                        case 'hidden':
                        case 'date':
                            print s('Converting %s from %s to %s', htmlentities($_POST['name'][$id]), $existingtype,
                                    htmlentities($_POST['type'][$id])).'<br/>';
                            switch ($_POST['type'][$id]) {
                                case 'radio':
                                case 'checkboxgroup':
                                case 'select':
                                    $lc_name = getNewAttributeTablename($req[1]);
                                    Sql_Query("update {$tables['attribute']} set tablename = \"$lc_name\" where id = $id");
                                    Sql_Query("create table $table_prefix"."listattr_$lc_name (id integer not null primary key auto_increment, name varchar(255), unique (name(150)),listorder integer default 0)");
                                    $attreq = Sql_Query("select distinct value from {$tables['user_attribute']} where attributeid = $id");
                                    while ($row = Sql_Fetch_Row($attreq)) {
                                        $attindexreq = Sql_Query("select id from $table_prefix"."listattr_$lc_name where name = \"$row[0]\"");
                                        if (!Sql_Affected_Rows()) {
                                            Sql_Query("insert into $table_prefix"."listattr_$lc_name (name) values(\"$row[0]\")");
                                            $attid = Sql_Insert_Id();
                                        } else {
                                            $attindex = Sql_Fetch_Row($attindexreq);
                                            $attid = $attindex[0];
                                        }
                                        Sql_Query("update {$tables['user_attribute']} set value = $attid where attributeid = $id and value = \"$row[0]\"");
                                    }
                                    break;
                                case 'checkbox':
                                    // in case of checkbox we just need to set the value to "on"
                                    Sql_Query("update {$tables['user_attribute']} set value = \"off\" where attributeid = $id and (value = 0 or value = \"off\")");
                                    Sql_Query("update {$tables['user_attribute']} set value = \"on\" where attributeid = $id and (value = 1 or value = \"on\") ");
                                case 'date':
                                    $attreq = Sql_Query("select * from {$tables['user_attribute']} where attributeid = $id");
                                    while ($row = Sql_Fetch_Array($attreq)) {
                                        //                  if (strlen($row["value"] > 5)) {
                                        Sql_Query(sprintf('update %s set value = "%s" where attributeid = %d and userid = %d',
                                            $tables['user_attribute'], parseDate($row['value']), $row['attributeid'],
                                            $row['userid']));
//                  }
                                    }
                                    break;
                            }
                            break;
                        case 'radio':
                        case 'select':
                        case 'checkbox':
                            if ($_POST['type'][$id] != 'date' && $_POST['type'][$id] != 'hidden' && $_POST['type'][$id] != 'textline') {
                                break;
                            }
                            echo s('Converting %s from %s to %s', htmlentities($_POST['name'][$id]), $existingtype,
                                    htmlentities($_POST['type'][$id])).'<br/>';
                            // we are turning a radio,select or checkbox into a hidden or textline field
                            $valuereq = Sql_Query("select id,name from $table_prefix"."listattr_$req[1]");
                            while ($row = Sql_Fetch_Row($valuereq)) {
                                Sql_Query("update {$tables['user_attribute']} set value = \"$row[1]\" where attributeid = $id and value=\"$row[0]\"");
                            }
                            Sql_Query("drop table $table_prefix"."listattr_$req[1]");
                            break;
                        case 'checkboxgroup':
                            if ($_POST['type'][$id] == 'hidden' || $_POST['type'][$id] == 'textline') {
                                echo s('Converting %s from %s to %s', htmlentities($_POST['name'][$id]), $existingtype,
                                        htmlentities($_POST['type'][$id])).'<br/>';
                                // we are changing a checkbox group into a hidden or textline
                                // take the first value!
                                $valuereq = Sql_Query("select id,name from $table_prefix"."listattr_$req[1]");
                                while ($row = Sql_Fetch_Row($valuereq)) {
                                    Sql_Query("update {$tables['user_attribute']} set value = \"$row[1]\" where attributeid = $id and value like \"$row[0]%\"");
                                }
                                Sql_Query("drop table if exists $table_prefix"."listattr_$req[1]");
                            } elseif ($_POST['type'][$id] == 'radio' || $_POST['type'][$id] == 'select') {
                                $valuereq = Sql_Query("select userid,value from {$tables['user_attribute']} where attributeid = $id");
                                // take the first value!
                                while ($row = Sql_Fetch_Row($valuereq)) {
                                    $values = explode(',', $row[1]);
                                    Sql_Query("update {$tables['user_attribute']} set value = \"$values[0]\" where attributeid = $id and userid = \"$row[0]\"");
                                }
                            }
                            break;
                    }
                }
                if (empty($_POST['required'][$id])) {
                    $nRequired = 0;
                } else {
                    $nRequired = $_POST['required'][$id];
                }
                $query = sprintf('update %s set name = "%s" ,type = "%s" ,listorder = %d,default_value = "%s" ,required = %d where id = %d',
                    $tables['attribute'], sql_escape(strip_tags($_POST['name'][$id])), sql_escape($_POST['type'][$id]),
                    $_POST['listorder'][$id], sql_escape($_POST['default'][$id]), $nRequired, $id);
                Sql_Query($query);
                // save keywordlib seperately in case the DB hasn't been upgraded
                if ((defined('IN_WEBBLER') && IN_WEBBLER) || (defined('WEBBLER') && WEBBLER)) {
                    Sql_Query(sprintf('update ignore %s set keywordlib = %d where id = %d',
                        $GLOBALS['tables']['attribute'], $_POST['keywordlib'][$id], $id));
                }
            }
        }
    }
} elseif (isset($_POST['tagaction']) && is_array($_POST['tag'])) {
    ksort($_POST['tag']);
    if (isset($_POST['tagaction']['delete'])) {
        foreach ($_POST['tag'] as $k => $id) {
            // check for dependencies
            $id = sprintf('%d', $id);
            if ($formtable_exists) {
                $req = Sql_Query("select * from formfield where attribute = $id");
                $candelete = !Sql_Affected_Rows();
            } else {
                $candelete = 1;
            }
            if ($candelete) {
                echo s('deleting')." $id<br/>";
                $row = Sql_Fetch_Row_Query("select tablename,type from {$tables['attribute']} where id = $id");
                Sql_Query("drop table if exists $table_prefix"."listattr_$row[0]");
                Sql_Query("delete from {$tables['attribute']} where id = $id");
                // delete all user attributes as well
                Sql_Query("delete from {$tables['user_attribute']} where attributeid = $id");
            } else {
                echo Error($GLOBALS['I18N']->get('Cannot delete attribute, it is being used by the following forms:').'<br/>');
                while ($row = Sql_Fetch_Array($req)) {
                    echo PageLink2('editelements&id='.$row['form'].'&option="edit_elements"&pi="formbuilder"',
                            'form '.$row['form'].'')."<br/>\n";
                }
            }
        }
    } elseif (isset($_POST['tagaction']['merge'])) {
        $first = array_shift($_POST['tag']);
        $firstdata = Sql_Fetch_Array_Query(sprintf('select * from %s where id = %d', $tables['attribute'], $first));
        $first = $firstdata['id'];
        if (!count($_POST['tag'])) {
            echo Error(s('cannot merge just one attribute'));
        } else {
            $cbg_initiated = 0;
            foreach ($_POST['tag'] as $attid) {
                echo s('Merging %s into %d', htmlspecialchars($attid), htmlspecialchars($first)).'<br/>';

                $attdata = Sql_Fetch_Array_Query(sprintf('select * from %s where id = %d', $tables['attribute'],
                    $attid));
                if ($attdata['type'] != $firstdata['type']) {
                    echo Error(s('Can only merge attributes of the same type'));
                } else {
                    // debugging: check values for every user. This is very memory demanding, so you'll need to
                    // add loads of memory to actually use it.
                    /*
                              $before = array();
                              $second = array();
                              $after = array();
                              $req = Sql_Query(sprintf('select * from %s where attributeid = %d',$tables["user_attribute"],$first));
                              while ($row = Sql_Fetch_Array($req)) {
                                $before[$row["userid"]] = $row["value"];
                              }
                              $req = Sql_Query(sprintf('select * from %s where attributeid = %d',$tables["user_attribute"],$attid));
                              while ($row = Sql_Fetch_Array($req)) {
                                $second[$row["userid"]] = $row["value"];
                              }
                    */
                    $valuestable = sprintf('%slistattr_%s', $table_prefix, $firstdata['tablename']);
                    if ($firstdata['type'] == 'checkbox' && !$cbg_initiated) {
                        // checkboxes are merged into a checkbox group
                        // set that up first
                        Sql_query(sprintf('create table %s
            (id integer not null primary key auto_increment, name varchar(255), unique (name(150)),
            listorder integer default 0)', $valuestable), 1);
                        Sql_query(sprintf('insert into %s (name) values("%s")', $valuestable, $firstdata['name']));
                        $val = Sql_Insert_Id();
                        Sql_query(sprintf('update %s set value="%s" where attributeid = %d',
                            $tables['user_attribute'], $val, $first));
                        Sql_query(sprintf('update %s set type="checkboxgroup" where id = %d',
                            $tables['attribute'], $first));
                        $cbg_initiated = 1;
                    }
                    switch ($firstdata['type']) {
                        case 'textline':
                        case 'hidden':
                        case 'textarea':
                        case 'date':
                            Sql_query(sprintf('delete from %s where attributeid = %d and value = ""',
                                $tables['user_attribute'], $first));
                            // we can just keep the data and mark it as the first attribute
                            Sql_query(sprintf('update ignore %s set attributeid = %d where attributeid = %d',
                                $tables['user_attribute'], $first, $attid), 1);
                            // delete the ones that didn't copy across, because there was a value already
                            Sql_query(sprintf('delete from %s where id = %d',
                                $tables['attribute'], $attid));
                            // mark forms to use the merged attribute
                            if ($formtable_exists) {
                                Sql_Query(sprintf('update formfield set attribute = %d where attribute = %d', $first,
                                    $attid), 1);
                            }
                            break;
                        case 'radio':
                        case 'select':
                            // merge user values
                            Sql_Query(sprintf('delete from %s where attributeid = %d and value = ""',
                                $tables['user_attribute'], $first));
                            $req = Sql_Query(sprintf('select * from %s',
                                $table_prefix.'listattr_'.$attdata['tablename']));
                            while ($val = Sql_Fetch_Array($req)) {
                                // check if it already exists
                                $exists = Sql_Fetch_row_Query(sprintf('select id from %s where name = "%s"',
                                    $valuestable, $val['name']));
                                if (!$exists[0]) {
                                    Sql_Query(sprintf('insert into %s (name) values("%s")',
                                        $valuestable, $val['name']));
                                    $val_index = Sql_Insert_id();
                                } else {
                                    $val_index = $exists[0];
                                }
                                Sql_Query(sprintf('update %s set value = %d where attributeid = %d',
                                    $tables['user_attribute'], $val_index, $attid));
                            }
                            Sql_Query(sprintf('update %s set attributeid = %d where attributeid = %d',
                                $tables['user_attribute'], $first, $attid), 1);
                            Sql_Query(sprintf('drop table %s', $table_prefix.'listattr_'.$attdata['tablename']), 1);
                            Sql_Query(sprintf('delete from %s where id = %d',
                                $tables['attribute'], $attid));
                            // mark forms to use the merged attribute
                            if ($formtable_exists) {
                                Sql_Query(sprintf('update formfield set attribute = %d where attribute = %d', $first,
                                    $attid), 1);
                            }
                            break;
                        case 'checkbox':
                            $exists = Sql_Fetch_row_Query(sprintf('select id from %s where name = "%s"',
                                $valuestable, $attdata['name']));
                            if (!$exists[0]) {
                                Sql_Query(sprintf('insert into %s (name) values("%s")',
                                    $valuestable, $attdata['name']));
                                $val_index = Sql_Insert_id();
                            } else {
                                $val_index = $exists[0];
                            }
                            Sql_Query(sprintf('update %s set value = concat(value,",","%s") where attributeid = %d and (value != 0 or value != "off") ',
                                $tables['user_attribute'], $val_index, $first));
                            Sql_Query(sprintf('delete from %s where id = %d',
                                $tables['attribute'], $attid));
                            // mark forms to use the merged attribute
                            if ($formtable_exists) {
                                Sql_Query(sprintf('update formfield set attribute = %d where attribute = %d', $first,
                                    $attid), 1);
                            }
                            break;
                        case 'checkboxgroup':
                            // hmm, this is a tricky one.
                            print Error(s('Sorry, merging of checkbox groups is not implemented yet'));
                            break;
                    }

                    /*
                              $req = Sql_Query(sprintf('select * from %s where attributeid = %d',$tables["user_attribute"],$first));
                              while ($row = Sql_Fetch_Array($req)) {
                                $after[$row["userid"]] = $row["value"];
                              }
                              foreach ($before as $userid => $value) {
                                printf("\n".'<br/>%d before -> %s and %s<br/>after ->%s',$userid,$value,$second[$userid],$after[$userid]);
                              }
                    */
                }
            }
        }
    }
}
Sql_Query("update {$tables['attribute']} set required = 0 where type = \"checkboxgroup\" or type = \"hidden\"");

?>

    <script language="Javascript" type="text/javascript">
        var warned = 0;
        function warn() {
            if (!warned)
                alert("<?php echo s('Warning, changing types of attributes can take a long time')?>");
            warned = 1;
        }
    </script>
<?php echo formStart() ?>
<?php
echo s('Load data from').' '.PageLinkButton('defaults',
        s('predefined defaults')).Help("predefineddefaults").'<br />';

$res = Sql_Query("select * from {$tables['attribute']} order by listorder");
if (Sql_Affected_Rows()) {
    echo '<h3>' .s('Existing attributes').'</h3>';
} else {
    echo '<p class="information">'.s('No Attributes have been defined yet').'</p>';
}
$c = 0;
echo '<div class="accordion">';
while ($row = Sql_Fetch_array($res)) {
    ++$c;
    echo '<h3><a name="'.$row['id'].'">'.
        s('Attribute').': '.$row['id'].' '.htmlspecialchars(stripslashes(strip_tags($row['name'])));
    if ($formtable_exists) {
        sql_query('select * from formfield where attribute = '.$row['id']);
        echo '  ('.s('used in').' '.Sql_affected_rows().' '.$GLOBALS['I18N']->get('forms').')';
    }

    echo '</a></h3><div><label>'.s('Tag').'
  <input type="checkbox" name="tag[' .$c.']" value="'.$row['id'].'" /></label>';

    echo '<label>'.s('Name').':</label>
  <input type="text" name="name[' .$row['id'].']" value="'.htmlspecialchars(stripslashes(strip_tags($row['name']))).'" size="40" />';
    echo '<label>'.s('Type').': </label>
  <!--<input type="hidden" name="type[' .$row['id'].']" value="'.$row['type'].'">'.$row['type'].'-->';

    echo '<select name="type['.$row['id'].']" onchange="warn();">';
    foreach ($types as $key => $val) {
        printf('<option value="%s" %s>%s</option>', $val, $val == $row['type'] ? 'selected="selected"' : '',
            s($val));
    }
    echo ' 
   </select>';

    if ((defined('IN_WEBBLER') && IN_WEBBLER) || (defined('WEBBLER') && WEBBLER)) {
        if ($row['type'] == 'select' || $row['type'] == 'radio' || $row['type'] == 'checkboxgroup') {
            echo ' '.s('authoritative list').'&nbsp;';
            printf('<select name="keywordlib[%d]"><option value="">-- select</option>', $row['id']);
            $req = Sql_Query(sprintf('select id,name from keywordlib order by listorder,name'));
            while ($kwlib = Sql_Fetch_Array($req)) {
                printf('<option value="%d" %s>%s</option>', $kwlib['id'],
                    $row['keywordlib'] == $kwlib['id'] ? 'selected="selected"' : '', htmlspecialchars($kwlib['name']));
            }
            echo '</select>';
        }
    }

    if ((!defined('IN_WEBBLER') || !IN_WEBBLER) && (!defined('WEBBLER') || !WEBBLER)) {
        if ($row['type'] == 'select' || $row['type'] == 'radio' || $row['type'] == 'checkboxgroup') {
            echo PageLinkButton('editattributes&id='.$row['id'], s('edit values'));
        }
    }

    echo '<label>'.s('Default Value').':</label>
  <input type="text" name="default[' .$row['id'].']" value="'.htmlspecialchars(stripslashes((string)$row['default_value'])).'" size="40" />';
    echo '<label>'.s('Order of Listing').':</label>
  <input type="text" name="listorder[' .$row['id'].']" value="'.$row['listorder'].'" size="5" />';
    echo '<label>'.s('Is this attribute required ?').'<input type="checkbox" name="required['.$row['id'].']" value="1" ';
    echo $row['required'] ? 'checked="checked"' : '';
    echo  '/></label>';
    echo  '</div>';
}
echo '</div><br /><!--close accordion-->';
printf('<input class="submit" type="submit" name="action" value="%s" /> ', s('Save Changes'));
if ($c) {
    printf('<span class="buttonGroup"><input class="submit" type="submit" name="tagaction[delete]" value="%s" /> 
  <input class="submit" type="submit" name="tagaction[merge]" value="%s" />%s
  </span>', s('Delete tagged attributes'), s('Merge tagged attributes'),
        Help('mergeattributes'));
}

echo '<br /><br /><br /><div id="new-attribute">
<a name="new"></a>
<h3>' .s('Add new Attribute').'</h3>
<div class="alert alert-warning">' .s('Warning: Storage of sensitive personal data such as race, health, and sexual orientation is regulated by some data protection laws').'. <a href="https://www.phplist.org/manual/ch048_gdpr.xhtml" target="_blank">' .s('Read more'). '&hellip;</a></div>

<div class="label pull-left"><label class="label">' .s('Name').': </label></div>
<div class="field"><input type="text" name="name[0]" value="" size="40" /></div>
<div class="label pull-left"><label class="label">' .s('Type').': </label></div>
<div class="field"><select name="type[0]">';
foreach ($types as $key => $val) {
    printf('     <option value="%s" %s>%s</option>', $val, '', s($val));
}
echo'
</select></div>
<div class="label pull-left"><label class="label">' .s('Default Value').': </label></div>
<div class="field"><input type="text" name="default[0]" value="" size="40" /></div>
<div class="label pull-left"><label class="label">' .s('Order of Listing').': </label></div>
<div class="field"><input type="text" name="listorder[0]" value="" size="5" /></div>
<div class="label pull-left"><label class="label">' .s('Is this attribute required?').': </label></div>
<div class="field"><input type="checkbox" name="required[0]" value="1" checked="checked" /></div>

<div class="field"><input class="submit" type="submit" name="action" value="' .s('Save Changes').'" /></div>
</div>
</form>
</div></div>
';

Filemanager

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