remove some already fixed todo markers

Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann
2022-05-21 17:03:34 +02:00
parent f6c265dfa1
commit 309abc6150
5 changed files with 7 additions and 8 deletions

View File

@@ -194,7 +194,7 @@ class Ajax
}
/**
* @todo $userinfo
* search globally in various resources
*/
private function searchGlobal()
{

View File

@@ -199,7 +199,6 @@ class Core
/**
* Create database and database-user
*
* @todo add exceptions?
* @param object $db_root
* @return void
* @throws Exception
@@ -271,7 +270,6 @@ class Core
/**
* Grant privileges to given user.
*
* @todo add exceptions?
* @param $db_root
* @param $database
* @param $username
@@ -665,11 +663,13 @@ class Core
} elseif ($this->validatedData['webserver_backend'] == 'fcgid') {
$system_params[] = 'fcgid';
}
// @todo ftp,mail,smtp
$json_params = [
'distro' => $this->validatedData['distribution'],
'dns' => 'x',
'http' => $this->validatedData['webserver'],
'smtp' => 'postfix_dovecot',
'mail' => 'dovecot_postfix',
'ftp' => 'proftpd',
'system' => $system_params
];
$_SESSION['installation']['json_params'] = json_encode($json_params);

View File

@@ -36,7 +36,6 @@ class Language
/**
* @return array
* @fixme iso seems to be not used in froxlor?
*/
public static function getLanguages(): array
{

View File

@@ -1983,7 +1983,7 @@ sql_select: SELECT password_enc FROM mail_users WHERE username='%u@%r' OR email=
<!-- IMAP/POP3 services -->
<service type="mail" title="{{lng.admin.configfiles.mail}}">
<!-- Dovecot -->
<daemon name="dovecot" version="2" title="Dovecot"
<daemon name="dovecot_postfix" version="2" title="Dovecot"
default="true">
<command><![CDATA[echo "net-mail/dovecot mysql managesieve sieve" >> /etc/portage/package.use/froxlor]]></command>
<install><![CDATA[emerge net-mail/dovecot]]></install>

View File

@@ -45,14 +45,14 @@ return [
'placeholder' => lng('mysql.mysql_ssl_ca_file'),
'type' => 'text',
'value' => old('mysql_ssl_ca_file', null, 'installation'),
'advanced' => true, // @todo
'advanced' => true,
],
'mysql_ssl_verify_server_certificate' => [
'label' => lng('mysql.mysql_ssl_verify_server_certificate'),
'type' => 'checkbox',
'value' => '1',
'checked' => old('mysql_ssl_verify_server_certificate', '0', 'installation'),
'advanced' => true // @todo
'advanced' => true,
],
'mysql_root_user' => [
'label' => lng('mysql.privileged_user'),