added password generator, fixes #346
Signed-off-by: Christoph Burchert (Chb) <derchb@froxlor.org>
This commit is contained in:
@@ -32,6 +32,11 @@ return array(
|
||||
'email_password' => array(
|
||||
'label' => $lng['login']['password'],
|
||||
'type' => 'password'
|
||||
),
|
||||
'email_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
@@ -33,6 +33,11 @@ return array(
|
||||
'label' => $lng['login']['password'],
|
||||
'type' => 'password'
|
||||
),
|
||||
'email_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
),
|
||||
'email_quota' => array(
|
||||
'visible' => ($settings['system']['mail_quota_enabled'] == '1' ? true : false),
|
||||
'label' => $lng['emails']['quota'],
|
||||
|
||||
@@ -39,6 +39,11 @@ return array(
|
||||
'label' => $lng['login']['password'],
|
||||
'type' => 'password'
|
||||
),
|
||||
'directory_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
),
|
||||
'directory_authname' => array(
|
||||
'label' => $lng['extras']['htpasswdauthname'],
|
||||
'type' => 'text'
|
||||
|
||||
@@ -38,6 +38,11 @@ return array(
|
||||
'label' => $lng['login']['password'],
|
||||
'type' => 'password'
|
||||
),
|
||||
'directory_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
),
|
||||
'directory_authname' => array(
|
||||
'label' => $lng['extras']['htpasswdauthname'],
|
||||
'type' => 'text',
|
||||
|
||||
@@ -45,6 +45,11 @@ return array(
|
||||
'label' => $lng['login']['password'],
|
||||
'type' => 'password',
|
||||
),
|
||||
'ftp_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
),
|
||||
'sendinfomail' => array(
|
||||
'label' => $lng['customer']['sendinfomail'],
|
||||
'type' => 'checkbox',
|
||||
|
||||
@@ -39,6 +39,11 @@ return array(
|
||||
'label' => $lng['login']['password'],
|
||||
'desc' => $lng['ftp']['editpassdescription'],
|
||||
'type' => 'password',
|
||||
),
|
||||
'ftp_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
@@ -37,6 +37,11 @@ return array(
|
||||
'label' => $lng['login']['password'],
|
||||
'type' => 'password',
|
||||
),
|
||||
'mysql_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
),
|
||||
'sendinfomail' => array(
|
||||
'label' => $lng['customer']['sendinfomail'],
|
||||
'type' => 'checkbox',
|
||||
|
||||
@@ -43,6 +43,11 @@ return array(
|
||||
'label' => $lng['changepassword']['new_password_ifnotempty'],
|
||||
'type' => 'password',
|
||||
),
|
||||
'mysql_password_suggestion' => array(
|
||||
'label' => $lng['customer']['generated_pwd'],
|
||||
'type' => 'text',
|
||||
'value' => generatePassword(),
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user