You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-09 05:02:44 +03:00
composer format
This commit is contained in:
@@ -564,7 +564,7 @@ function create_page_browser($idxfield, $querypart, $sql_params = []) {
|
||||
# afterwards: DROP SEQUENCE foo
|
||||
|
||||
$result = db_query_all($query, $sql_params);
|
||||
for($k = 0; $k < count($result); $k+=2) {
|
||||
for ($k = 0; $k < count($result); $k+=2) {
|
||||
if (isset($result[$k + 1])) {
|
||||
$label = substr($result[$k]['label'], 0, $label_len) . '-' . substr($result[$k+1]['label'], 0, $label_len);
|
||||
} else {
|
||||
@@ -1402,9 +1402,9 @@ function smtp_mail($to, $from, $data, $password = "", $body = "") {
|
||||
fputs($fh, "STARTTLS\r\n");
|
||||
smtp_get_response($fh);
|
||||
|
||||
stream_set_blocking ($fh, true);
|
||||
stream_set_blocking($fh, true);
|
||||
stream_socket_enable_crypto($fh, true, STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT);
|
||||
stream_set_blocking ($fh, true);
|
||||
stream_set_blocking($fh, true);
|
||||
}
|
||||
|
||||
fputs($fh, "EHLO $smtp_server\r\n");
|
||||
|
@@ -337,9 +337,7 @@ require(dirname(__FILE__) . '/../templates/header.php');
|
||||
|
||||
if (!isset($_SERVER['HTTPS'])) {
|
||||
echo "<h2>Warning: connection not secure, switch to https if possible</h2>";
|
||||
}
|
||||
|
||||
?>
|
||||
} ?>
|
||||
|
||||
<div class="standout"><?php print $setupMessage; ?></div>
|
||||
|
||||
@@ -352,8 +350,7 @@ require(dirname(__FILE__) . '/../templates/header.php');
|
||||
<p>You can use the form below, or run something like <pre>php -r 'echo "somesalt:" . sha1("somesalt:" . "password");'</pre> in a shell, after changing the salt.<p>
|
||||
EOF;
|
||||
$change = "Generate";
|
||||
}
|
||||
?>
|
||||
} ?>
|
||||
|
||||
<h2><?= $change ?> $CONF['setup_password']</h2>
|
||||
|
||||
@@ -425,23 +422,20 @@ EOF;
|
||||
</html>
|
||||
<?php
|
||||
|
||||
function _error_field($errors, $key)
|
||||
{
|
||||
function _error_field($errors, $key) {
|
||||
if (!isset($errors[$key])) {
|
||||
return '';
|
||||
}
|
||||
return "<span style='color: red'>{$errors[$key]}</span>";
|
||||
}
|
||||
|
||||
function generate_setup_password_salt()
|
||||
{
|
||||
function generate_setup_password_salt() {
|
||||
$salt = time() . '*' . $_SERVER['REMOTE_ADDR'] . '*' . mt_rand(0, 60000);
|
||||
$salt = md5($salt);
|
||||
return $salt;
|
||||
}
|
||||
|
||||
function encrypt_setup_password($password, $salt)
|
||||
{
|
||||
function encrypt_setup_password($password, $salt) {
|
||||
return $salt . ':' . sha1($salt . ':' . $password);
|
||||
}
|
||||
|
||||
@@ -452,8 +446,7 @@ function encrypt_setup_password($password, $salt)
|
||||
'message => text
|
||||
)
|
||||
*/
|
||||
function check_setup_password($password, $lostpw_mode = 0)
|
||||
{
|
||||
function check_setup_password($password, $lostpw_mode = 0) {
|
||||
global $CONF;
|
||||
$error = 1; # be pessimistic
|
||||
|
||||
@@ -488,8 +481,7 @@ function check_setup_password($password, $lostpw_mode = 0)
|
||||
return array($error, $result);
|
||||
}
|
||||
|
||||
function create_admin($values)
|
||||
{
|
||||
function create_admin($values) {
|
||||
DEFINE('POSTFIXADMIN_SETUP', 1); # avoids instant redirect to login.php after creating the admin
|
||||
|
||||
$handler = new AdminHandler(1, 'setup.php');
|
||||
|
Reference in New Issue
Block a user