[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@52.14.37.165: ~ $
<?php

# default configuration. These values can be changed
# via the admin page, so you do not need to edit them here
# they are used to initialise things
# if you *do* edit them, make sure they stay in the correct format
# otherwise you will end up with parse errors and things will stop working

if (!defined('PHPLISTINIT')) die;

$defaultheader = '</head><body>';

$defaultfooter = '</body></html>';


if (is_file(dirname(__FILE__).'/ui/'.$GLOBALS['ui'].'/frontendheader.php')) {
	$defaultheader = file_get_contents(dirname(__FILE__).'/ui/'.$GLOBALS['ui'].'/frontendheader.php');
}
if (is_file(dirname(__FILE__).'/ui/'.$GLOBALS['ui'].'/frontendfooter.php')) {
	$defaultfooter = file_get_contents(dirname(__FILE__).'/ui/'.$GLOBALS['ui'].'/frontendfooter.php');
}

if (isset ($_SERVER['HTTP_HOST'])) {
	$D_website = $_SERVER['HTTP_HOST'];
} else {
	$D_website = $_SERVER['SERVER_NAME'];
}
$D_domain = $D_website;
if (preg_match("#^www\.(.*)#i", $D_domain, $regs))
	$D_domain = $regs[1];

# for starters, you want to leave this line as it is.
$default_config = array (

  /* any next line has the format
    "name" => array(
      'value',     // default value
      'description', 
      'type',      // text, textarea, boolean
      'allow empty', // 0 or 1 (or false/true)
      'category'   // general
    ),
  */
  
  

  # what is your website location (url)
"website" => array (
  'value' => $D_website,
  'description' => s("Website address (without http://)"),
  'type' => "text",
  'allowempty' => false, ## indication this value cannot be empty (1 being it can be empty)
  'category'=> 'general'
),

  # what is your domain (for sending emails)
"domain" => array (
 'value' =>   $D_domain,
 'description' => s("Domain Name of your server (for email)"),
  'type' => "text",
  'allowempty' => false,
  'category'=> 'general',
),

  # admin address is the person who is in charge of this system
"admin_address" => array (
 'value' => 'webmaster@[DOMAIN]',
 'description' => s("Person in charge of this system (one email address)"),
  'type' => "email",
  'allowempty' => false,
  'category'=> 'general',
),
  # name of the organisation
"organisation_name" => array (
 'value' => '',
 'description' => s("Name of the organisation"),
  'type' => "text",
  'allowempty' => true,
  'category'=> 'general',
),

  # how often to check for new versions of PHPlist
"check_new_version" => array (
 'value' =>  "7",
 'description' => s("How often do you want to check for a new version of phplist (days)"),
  'type' => "integer",
  'min' => 1,
  'max' => 180,
  'category'=> 'security',
),

  ## remote processing secret
"remote_processing_secret" => array (
 'value' =>  substr(md5(uniqid(mt_rand(), true)),rand(0,10),rand(10,20)),
 'description' => s("Secret for remote processing"),
  'type' => "text",
  'category'=> 'security',
),

  # admin addresses are other people who receive copies of subscriptions
"admin_addresses" => array (
  'value' => '',
  'description' => s("List of email addresses to CC in system messages (separate by commas)"),
  'type' => "emaillist",
  'allowempty' => true,
  'category'=> 'reporting',
),
"campaignfrom_default" => array(
  'value' => '',
  'description' => s("Default for 'From:' in a campaign"),
  'type' => "text",
  'allowempty' => true,
  'category'=> 'campaign',
),
"notifystart_default" => array(
  'value' => '',
  'description' => s("Default for 'address to alert when sending starts'"),
  'type' => "email",
  'allowempty' => true,
  'category'=> 'campaign',
),
"notifyend_default" => array(
  'value' => '',
  'description' => s("Default for 'address to alert when sending finishes'"),
  'type' => "email",
  'allowempty' => true,
  'category'=> 'campaign',
),
"always_add_googletracking" => array(
  'value' => '0',
  'description' => s("Always add Google tracking code to campaigns"),
  'type' => "boolean",
  'allowempty' => true,
  'category'=> 'campaign',
),
  # report address is the person who gets the reports
"report_address" => array (
  'value' => 'listreports@[DOMAIN]',
  'description' => s("Who gets the reports (email address, separate multiple emails with a comma)"),
  'type' => "emaillist",
  'allowempty' => true,
  'category'=> 'reporting',
),

  # where will messages appear to come from
"message_from_address" => array (
  'value' => "noreply@[DOMAIN]",
  'description' => s("From email address for system messages"),
  'type' => "email",
  'allowempty' => 0,
  'category'=> 'transactional',
),

"message_from_name" => array (
  'value' => s("Webmaster"),
  'description' => s("Name for system messages"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # what is the reply-to on messages?
"message_replyto_address" => array (
  'value' => "noreply@[DOMAIN]",
  'description' => s("Reply-to email address for system messages"),
  'type' => "email",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # if there is only one visible list, do we hide it and automatically
  # subscribe users who sign up
  ## not sure why you would not want this :-) maybe it should not be an option at all
"hide_single_list" => array (
  'value' => "1",
  'description' => s("If there is only one visible list, should it be hidden in the page and automatically subscribe users who sign up"),
  'type' => "boolean",
  'allowempty' => true,
  'category'=> 'subscription-ui',
),

  # categories for lists, to organise them a little bit
  # comma separated list of words
"list_categories" => array (
  'value' => "",
  'description' => s("Categories for lists. Separate with commas."),
  'type' => "text",
  'allowempty' => true,
  'category'=> 'list-organisation',
),

  # width of a textline field
"textline_width" => array (
  'value' => "40",
  'description' => s("Width of a textline field (numerical)"),
  'type' => "integer",
  'min' => 20,
  'max' => 150,
  'category'=> 'subscription-ui',
),

  # dimensions of a textarea field
"textarea_dimensions" => array (
  'value' => "10,40",
  'description' => s("Dimensions of a textarea field (rows,columns)"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'subscription-ui',
),

  # send copies of subscribe, update unsubscribe messages to the administrator
"send_admin_copies" => array (
  'value' => "0",
  'description' => s("Send notifications about subscribe, update and unsubscribe"),
  'type' => "boolean",
  'allowempty' => true,
  'category'=> 'reporting',
),

  # the main subscribe page, when there are multiple
"defaultsubscribepage" => array (
  'value' => 1,
  'description' => s("The default subscribe page when there are multiple"),
  'type' => "integer",
  'min' => 1,
  'max' => 999,  // max(id) from subscribepage
  'allowempty' => true,
  'category'=> 'subscription',
),

  # the default template for sending an html message
"defaultmessagetemplate" => array (
  'value' => 0,
  'description' => s("The default HTML template to use when sending a message"),
  'type' => "text",
  'allowempty' => true,
  'category'=> 'campaign',
),

  # the template for system messages (welcome confirm subscribe etc)
"systemmessagetemplate" => array (
  'value' => 0,
  'description' => s("The HTML wrapper template for system messages"),
  'type' => "integer",
  'min' => 0,
  'max' => 999, // or max(id) from template
  'allowempty' => true,
  'category'=> 'transactional',
),
  ## the location of your subscribe script
  #"public_baseurl" => array("http://[WEBSITE]$pageroot/",
  #  "Base URL for public pages","text"),

  # the location of your subscribe script
"subscribeurl" => array (
  'value' => $GLOBALS['scheme'] . "://[WEBSITE]$pageroot/?p=subscribe",
  'description' => s("URL where subscribers can sign up"),
  'type' => "url",
  'allowempty' => 0,
  'category'=> 'subscription',
),

  # the location of your unsubscribe script:
"unsubscribeurl" => array (
  'value' => $GLOBALS['scheme'] . "://[WEBSITE]$pageroot/?p=unsubscribe",
  'description' => s("URL where subscribers can unsubscribe"),
  'type' => "url",
  'allowempty' => 0,
  'category'=> 'subscription',
),

  #0013076: Blacklisting posibility for unknown users
  # the location of your blacklist script:
"blacklisturl" => array (
  'value' => $GLOBALS['scheme'] . "://[WEBSITE]$pageroot/?p=donotsend",
  'description' => s("URL where unknown users can unsubscribe (do-not-send-list)"),
  'type' => "url",
  'allowempty' => 0,
  'category'=> 'subscription',
),

# the location of your confirm script:
"confirmationurl" => array (
  'value' => $GLOBALS['scheme'] . "://[WEBSITE]$pageroot/?p=confirm",
  'description' => s("URL where subscribers have to confirm their subscription"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'subscription',
),

  # url to change their preferences
"preferencesurl" => array (
  'value' => $GLOBALS['scheme'] . "://[WEBSITE]$pageroot/?p=preferences",
  'description' => s("URL where subscribers can update their details"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'subscription',
),

  # url to change their preferences
"forwardurl" => array (
  'value' => $GLOBALS['scheme'] . "://[WEBSITE]$pageroot/?p=forward",
  'description' => s("URL for forwarding messages"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'subscription',
),

'ajax_subscribeconfirmation' => array(
  'value' => s("<h3>Thanks, you have been added to our newsletter</h3><p>You will receive an email to confirm your subscription. Please click the link in the email to confirm</p>"),
  'description' => s("Text to display when subscription with an AJAX request was successful"),
  'type' => "textarea",
  'allowempty' => true,
  'category'=> 'subscription',
),

  # the location of your subscribe script
  #"subscribe_baseurl" => array("http://[WEBSITE]$pageroot/",
  #  "Base URL for public pages","text"),

  # the subject of the message
"subscribesubject" => array (
  'value' => s("Request for confirmation"),
  'description' => s("Subject of the message subscribers receive when they sign up"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # message that is sent when people sign up to a list
  # [LISTS] will be replaced with the list of lists they have signed up to
  # [CONFIRMATIONURL] will be replaced with the URL where a user has to confirm
  # their subscription
"subscribemessage" => array (
  'value' => '

  Almost welcome to our newsletter(s) ...

  Someone, hopefully you, has subscribed your email address to the following newsletters:
  
  [LISTS]

  If this is correct, please click the following link to confirm your subscription.
  Without this confirmation, you will not receive any newsletters.
  
  [CONFIRMATIONURL]
  
  If this is not correct, you do not need to do anything, simply delete this message.

  Thank you
  
    ',
  'description' => s("Message subscribers receive when they sign up"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # subject of the message when they unsubscribe
"unsubscribesubject" => array (
  'value' => s("Goodbye from our Newsletter"),
  'description' => s("Subject of the message subscribers receive when they unsubscribe"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # message that is sent when they unsubscribe
"unsubscribemessage" => array (
  'value' => '
  
  Goodbye from our Newsletter, sorry to see you go.

  You have been unsubscribed from our newsletters.

  This is the last email you will receive from us. Our newsletter system, phpList,
  will refuse to send you any further messages, without manual intervention by our administrator.

  If there is an error in this information, you can re-subscribe:
  please go to [SUBSCRIBEURL] and follow the steps.

  Thank you
  
  ',
  'description' => s("Message subscribers receive when they unsubscribe"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # confirmation of subscription
"confirmationsubject" => array (
  'value' => s('Welcome to our Newsletter'),
  'description' => s("Subject of the message subscribers receive after confirming their email address"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # message that is sent to confirm subscription
"confirmationmessage" => array (
  'value' => '
  
  Welcome to our Newsletter

  Please keep this message for later reference.

  Your email address has been added to the following newsletter(s):
  [LISTS]

  To update your details and preferences please go to [PREFERENCESURL].
  If you do not want to receive any more messages, please go to [UNSUBSCRIBEURL].

  Thank you
  
  ',
  'description' => s("Message subscribers receive after confirming their email address"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # the subject of the message sent when changing the user details
"updatesubject" => array (
  'value' => s("[notify] Change of List-Membership details"),
  'description' => s("Subject of the message subscribers receive when they have changed their details"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # the message that is sent when a user updates their information.
  # just to make sure they approve of it.
  # confirmationinfo is replaced by one of the options below
  # userdata is replaced by the information in the database
"updatemessage" => array (
  'value' => '
  
  This message is to inform you of a change of your details on our newsletter database

  You are currently member of the following newsletters:
  
  [LISTS]
  
  [CONFIRMATIONINFO]
  
  The information on our system for you is as follows:
  
  [USERDATA]
  
  If this is not correct, please update your information at the following location:
  
  [PREFERENCESURL]
  
  Thank you
  
    ',
  'description' => s("Message subscribers receive when they have changed their details"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # this is the text that is placed in the [!-- confirmation --] location of the above
  # message, in case the email is sent to their new email address and they have changed
  # their email address
"emailchanged_text" => array (
  'value' => '
  When updating your details, your email address has changed.
  Please confirm your new email address by visiting this webpage:
  
  [CONFIRMATIONURL]
  
  ',
  'description' => s("Part of the message that is sent to their new email address when subscribers change their information, and the email address has changed"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

  # this is the text that is placed in the [!-- confirmation --] location of the above
  # message, in case the email is sent to their old email address and they have changed
  # their email address
"emailchanged_text_oldaddress" => array (
  'value' => '
  Please Note: when updating your details, your email address has changed.

  A message has been sent to your new email address with a URL
  to confirm this change. Please visit this website to activate
  your membership.
  ',
  'description' => s("Part of the message that is sent to their old email address when subscribers change their information, and the email address has changed"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

"personallocation_subject" => array (
  'value' => s('Your personal location'),
  'description' => s("Subject of message when subscribers request their personal location"),
  'type' => "text",
  'allowempty' => 0,
  'category'=> 'transactional',
),

"personallocation_message" => array (
  'value' => '
  
  You have requested your personal location to update your details in our newsletter database.
  The location is below. Please make sure that you use the full line as mentioned below.
  Sometimes email programmes can wrap the line into multiple lines.
  
  Your personal location is:
  [PREFERENCESURL]
  
  Thank you.
  ',
  'description' => s('Message when subscribers request their personal location'),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

"messagefooter" => array (
  'value' => '--
  
    <div class="footer" style="text-align:left; font-size: 75%;">
      <p>This message was sent to [EMAIL] by [FROMEMAIL]</p>
      <p>To forward this message, please do not use the forward button of your email application, because this message was made specifically for you only. Instead use the <a href="[FORWARDURL]">forward page</a> in our newsletter system.<br/>
      To change your details and to choose which lists to be subscribed to, visit your personal <a href="[PREFERENCESURL]">preferences page</a><br/>
      Or you can <a href="[UNSUBSCRIBEURL]">opt-out completely</a> from all future mailings.</p>
    </div>

  ',
  'description' => s("Default footer for sending a campaign"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'campaign',
),

"forwardfooter" => array (
  'value' => '
     <div class="footer" style="text-align:left; font-size: 75%;">
      <p>This message has been forwarded to you by [FORWARDEDBY].</p>
      <p>You have not been automatically subscribed to this newsletter.</p>
      <p>If you think this newsletter may interest you, you can <a href="[SUBSCRIBEURL]">Subscribe</a> and you will receive our next newsletter directly to your inbox.</p>
      <p>You can also <a href="[BLACKLISTURL]">opt out completely</a> from receiving any further email from our newsletter application, phpList.</p>
    </div>
  ',
  'description' => s("Footer used when a message has been forwarded"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'campaign',
),

"pageheader" => array (
  'value' => $defaultheader,
  'description' => s("Header of public pages."),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'subscription-ui',
),

"pagefooter" => array (
  'value' => $defaultfooter,
  'description' => s("Footer of public pages"),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'subscription-ui',
),

//"html_charset" => array (
  //"UTF-8",
  //"Charset for HTML messages",
  //"text"
//),
//"text_charset" => array (
  //"UTF-8",
  //"Charset for Text messages",
  //"text"
//),

"personallocation_message" => array(
  'value' => '

You have requested your personal location to update your details from our website.
The location is below. Please make sure that you use the full line as mentioned below.
Sometimes email programmes can wrap the line into multiple lines.

Your personal location is:
[PREFERENCESURL]

Thank you.
',
  'description' => s('Message to send when they request their personal location'),
  'type' => "textarea",
  'allowempty' => 0,
  'category'=> 'transactional',
),

"remoteurl_append" => array(
  'value' => "",
  'description' => s("String to always append to remote URL when using send-a-webpage"),
  'type' => "text",
  'allowempty' => true,
  'category'=> 'campaign',
),

"wordwrap" => array(
  'value' => "75",
  'description' => s("Width for Wordwrap of Text messages"),
  'type' => "text",
  'allowempty' => true,
  'category'=> 'campaign',
),

"html_email_style" => array(
  'value' => '',
  'description' => s("CSS for HTML messages without a template"),
  'type' => "textarea",
  'allowempty' => true,
  'category'=> 'campaign',
  ),

"alwayssendtextto" => array(
  'value' => "",
  'description' => s("Domains that only accept text emails, one per line"),
  'type' => "textarea",
  'allowempty' => true,
  'category'=> 'campaign',
  ),

'tld_last_sync' => array(
  'value' => "0",
  'description' => s("last time TLDs were fetched"),
  'type' => "text",
  'allowempty' => true,
  'category'=> 'system',
  'hidden' => true,
  ),
'internet_tlds' => array(
  'value' => "",
  'description' => s("Top level domains"),
  'type' => "textarea",
  'allowempty' => true,
  'category'=> 'system',
  'hidden' => true,
  ),

);

########## certainly do not edit after this #########

$redfont = "";
$efont = "";

if (!TEST && REGISTER && defined("VERSION")) {
  if (strpos(VERSION,"dev") !== false)
		$v = "dev";
	else
		$v = VERSION;
	$PoweredBy = '<p align="left"><a href="http://www.phplist.com"><img src="http://powered.phplist.com/images/' . $v . '/power-phplist.png" width="88" height="31" title="powered by phplist" alt="powered by phplist" border="0" /></a></p>';
} else {
	$PoweredBy = '<center><a href="http://www.phplist.com"><img src="images/power-phplist.png" width="88" height="31" title="powered by phplist" alt="powered by phplist" border="0" /></a></center>';
}

if (!function_exists("getconfig")) { 
	function getConfig($item) {
		global $default_config, $domain, $website, $tables;

		if ($item != 'website' && isset ($GLOBALS['config'][$item])) {
			return $GLOBALS['config'][$item];
		}
/*
    if (!DEVSITE && isset($_SESSION['config'][$item])) {
      return $_SESSION['config'][$item];
    }
*/
		if (!isset ($GLOBALS['config']) || !is_array($GLOBALS['config'])) {
			$GLOBALS['config'] = array ();
		}

    if (empty($_SESSION['hasconf'])) {
      $hasconf = Sql_Table_Exists($tables["config"], 1);
      $_SESSION['hasconf'] = $hasconf;
    } else {
      $hasconf = $_SESSION['hasconf'];
    }

		$toget = $item;
		$value = '';
		if ($hasconf) {
			$query
			= ' select value,editable'
			. ' from ' . $tables['config']
			. ' where item = ?';
			$req = Sql_Query_Params($query, array($toget));
			if (!Sql_Num_Rows($req) || !$hasconf) {
				if (isset ($default_config[$item])) {
					$value = $default_config[$item]['value'];
				}
				# save the default value to the database, so we can obtain
				# the information when running from commandline
				if (Sql_Table_Exists($tables["config"]))
					saveConfig($item, $value);
				#    print "$item => $value<br/>";
			} else {
				$row = Sql_Fetch_Row($req);
				$value = $row[0];
        if (!empty($default_config[$item]['hidden'])) {
          $GLOBALS['noteditableconfig'][] = $item;
        }
			}
		}
		$value = str_replace('[WEBSITE]', $website, $value);
		$value = str_replace('[DOMAIN]', $domain, $value);
		$value = str_replace('<?=VERSION?>', VERSION, $value);
    
		if (isset ($default_config[$item]['type'])) {
			$type = $default_config[$item]['type'];
		} else {
			$type = "";
		}

		if ($type == "boolean") {
			if ($value == "0") {
				$value = "false";
			} elseif ($value == "1") {
				$value = "true";
			}
      ## cast to bool
      $value = $value == "true";
		}
    
    ## disallow single quotes in listcategories
    if ($item == 'list_categories') {
      $value = str_replace("'"," ",$value);
    }

		# if this is a subpage item, and no value was found get the global one
		if (!$value && strpos( $item,":") !== false) {
			list ($a, $b) = explode(":", $item);
			$value = getConfig($a);
      $_SESSION['config'][$item] = $value;
      return $value;
		} else {
			$GLOBALS['config'][$item] = stripslashes($value);
      $_SESSION['config'][$item] = $GLOBALS['config'][$item];
			return $GLOBALS['config'][$item];
		}
	}
} else {
	reset($default_config);
	while (list ($item, $values) = each($default_config)) {
		$val = getConfig($item);
    saveConfig($item, $values[0], 0);
  }
}

function getUserConfig($item, $userid = 0) {
  global $default_config, $tables, $domain, $website;
  $hasconf = Sql_Table_Exists($tables["config"]);
  $value = '';

  if ($hasconf) {
    $query = 'select value,editable from ' . $tables['config'] . ' where item = ?';
    $req = Sql_Query_Params($query, array($item));

    if (!Sql_Num_Rows($req)) {
      if ( array_key_exists($item, $default_config) ) { 
        $value = $default_config[$item]['value'];
      }
    } else {
      $row = Sql_fetch_Row($req);
      $value = $row[0];

      if ($row[1] == 0) {
        $GLOBALS['noteditableconfig'][] = $item;
      }
    }
  }
  # if this is a subpage item, and no value was found get the global one
  if (!$value && strpos( $item,":") !== false) {
    list ($a, $b) = explode(":", $item);
    $value = getUserConfig($a, $userid);
  }

  if ($userid) {
    $query = 'select uniqid, email from ' . $tables['user'] . ' where id = ?';
    $rs = Sql_Query_Params($query, array($userid));
    $user_req = Sql_Fetch_Row($rs);
    $uniqid = $user_req[0];
    $email = $user_req[1];
    # parse for placeholders
    # do some backwards compatibility:
    # hmm, reverted back to old system

    $url = getConfig("unsubscribeurl");
    $sep = strpos($url,'?') !== false ? '&' : '?';
    $value = str_ireplace('[UNSUBSCRIBEURL]', $url . $sep . 'uid=' . $uniqid, $value);
    $url = getConfig("confirmationurl");
    $sep = strpos($url,'?') !== false ? '&' : '?';
    $value = str_ireplace('[CONFIRMATIONURL]', $url . $sep . 'uid=' . $uniqid, $value);
    $url = getConfig("preferencesurl");
    $sep = strpos($url,'?') !== false ? '&' : '?';
    $value = str_ireplace('[PREFERENCESURL]', $url . $sep . 'uid=' . $uniqid, $value);
    $value = str_ireplace('[EMAIL]', $email, $value);

    $value = parsePlaceHolders($value, getUserAttributeValues($email));
  }
  $value = str_ireplace('[SUBSCRIBEURL]', getConfig("subscribeurl"), $value);
  $value = preg_replace('/\[DOMAIN\]/i', $domain, $value); #@ID Should be done only in one place. Combine getConfig and this one?
  $value = preg_replace('/\[WEBSITE\]/i', $website, $value);

  if ($value == "0") {
    $value = "false";
  }
  elseif ($value == "1") {
    $value = "true";
  }
  return $value;
}

$access_levels = array (
	0 => "none",
	1 => "all",
	2 => "view",
		#   3 => "edit",
	4 => "owner"
);


Filemanager

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