HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //opt/librepanel-backup/admin_configfiles.php
<?php

/**
 * This file is part of the LibrePanel project.
 * Copyright (c) 2010 the LibrePanel Team (see authors).
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you can also view it online at
 * https://files.librepanel.org/misc/COPYING.txt
 *
 * @copyright  the authors
 * @author     LibrePanel team <team@librepanel.org>
 * @license    https://files.librepanel.org/misc/COPYING.txt GPLv2
 */

const AREA = 'admin';
require __DIR__ . '/lib/init.php';

use LibrePanel\Config\ConfigParser;
use LibrePanel\FileDir;
use LibrePanel\LibrePanel;
use LibrePanel\Settings;
use LibrePanel\UI\Panel\UI;
use LibrePanel\UI\Request;
use LibrePanel\UI\Response;
use LibrePanel\Validate\Validate;

if ($userinfo['change_serversettings'] == '1') {
	if ($action == 'setconfigured') {
		Settings::Set('panel.is_configured', '1', true);
		Response::redirectTo('admin_configfiles.php');
	}

	// get distro from URL param
	$distribution = Request::any('distribution');
	$reselect = Request::any('reselect', 0);

	// check for possible setting
	if (empty($distribution)) {
		$distribution = Settings::Get('system.distribution') ?? "";
	}
	if ($reselect == 1) {
		$distribution = '';
	}

	$distributions_select = [];

	$services = [];
	$config_dir = FileDir::makeCorrectDir(LibrePanel::getInstallDir() . '/lib/configfiles/');

	if (!empty($distribution)) {
		if (!file_exists($config_dir . '/' . $distribution . ".xml")) {
			// unknown distribution -> redirect to select a valid distribution for config-templates
			Settings::Set('system.distribution', '');
			Response::redirectTo('admin_configfiles.php', ['reselect' => 1]);
		}

		// update setting if different
		if ($distribution != Settings::Get('system.distribution')) {
			Settings::Set('system.distribution', $distribution);
		}

		// create configparser object
		$configfiles = new ConfigParser($config_dir . '/' . $distribution . ".xml");

		// get distro-info
		$dist_display = $configfiles->getCompleteDistroName();

		// get all the services from the distro
		$services = $configfiles->getServices();
	} else {
		// show list of available distro's
		$distros = glob($config_dir . '*.xml');
		// read in all the distros
		foreach ($distros as $_distribution) {
			// get configparser object
			$dist = new ConfigParser($_distribution);
			// store in tmp array
			$distributions_select[str_replace(".xml", "", strtolower(basename($_distribution)))] = $dist->getCompleteDistroName();
		}

		// sort by distribution name
		asort($distributions_select);
	}

	if ($distribution != "" && !empty(Request::post('finish'))) {
		$valid_keys = ['http', 'dns', 'smtp', 'mail', 'antispam', 'ftp', 'system', 'distro'];
		unset($_POST['finish']);
		unset($_POST['csrf_token']);
		$params = Request::postAll();
		$params['distro'] = $distribution;
		$params['system'] = [];
		foreach (Request::post('system', []) as $sysdaemon) {
			$params['system'][] = $sysdaemon;
		}
		// validate params
		foreach ($params as $key => $value) {
			if (!in_array($key, $valid_keys)) {
				unset($params[$key]);
				continue;
			}
			if (!is_array($value)) {
				$params[$key] = Validate::validate($value, $key);
			} else {
				foreach ($value as $subkey => $subvalue) {
					$params[$key][$subkey] = Validate::validate($subvalue, $key.'.'.$subkey);
				}
			}
		}
		$params_content = json_encode($params);
		$params_filename = FileDir::makeCorrectFile(LibrePanel::getInstallDir() . 'install/' . LibrePanel::genSessionId() . '.json');
		file_put_contents($params_filename, $params_content);

		UI::twigBuffer('settings/configuration-final.html.twig', [
			'distribution' => $distribution,
			// alert
			'type' => 'info',
			'alert_msg' => lng('admin.configfiles.finishnote'),
			'basedir' => LibrePanel::getInstallDir(),
			'params_filename' => $params_filename
		]);
	} else {
		if (!empty($distribution)) {
			// show available services to configure
			$fields = $services;
			$link_params = ['section' => 'configfiles', 'distribution' => $distribution];
			UI::twigBuffer('settings/configuration.html.twig', [
				'action' => $linker->getLink($link_params),
				'fields' => $fields,
				'distribution' => $distribution
			]);
		} else {
			$cfg_formfield = [
				'config' => [
					'title' => lng('admin.configfiles.serverconfiguration'),
					'image' => 'fa-solid fa-wrench',
					'description' => lng('admin.configfiles.description'),
					'sections' => [
						'section_config' => [
							'fields' => [
								'distribution' => [
									'type' => 'select',
									'select_var' => $distributions_select,
									'label' => lng('admin.configfiles.distribution'),
									'selected' => Settings::Get('system.distribution') ?? ''
								]
							]
						]
					],
					'buttons' => [
						[
							'class' => 'btn-outline-secondary',
							'label' => lng('panel.cancel'),
							'type' => 'reset'
						],
						[
							'label' => lng('update.proceed')
						]
					]
				]
			];

			UI::twigBuffer('user/form-note.html.twig', [
				'formaction' => $linker->getLink(['section' => 'configfiles']),
				'formdata' => $cfg_formfield['config'],
				'actions_links' => (int)Settings::Get('panel.is_configured') == 0 ? [
					[
						'href' => $linker->getLink([
							'section' => 'configfiles',
							'page' => 'overview',
							'action' => 'setconfigured'
						]),
						'label' => lng('panel.ihave_configured'),
						'class' => 'btn-outline-warning',
						'icon' => 'fa-solid fa-circle-check'
					]
				] : [],
				// alert
				'type' => 'warning',
				'alert_msg' => lng('panel.settings_before_configuration') . ((int)Settings::Get('panel.is_configured') == 1 ? '<br><br>' . lng('panel.system_is_configured') : '')
			]);
		}
	}

	UI::twigOutputBuffer();
} else {
	Response::redirectTo('admin_index.php');
}