diff --git a/plugins/password/config.inc.php.dist b/plugins/password/config.inc.php.dist index b1478db37..57d3aa46a 100644 --- a/plugins/password/config.inc.php.dist +++ b/plugins/password/config.inc.php.dist @@ -25,9 +25,10 @@ $config['password_log'] = false; // will be not available (no Password tab in Settings) $config['password_login_exceptions'] = null; -// Array of hosts that support password changing. Default is NULL. +// Array of hosts that support password changing. // Listed hosts will feature a Password option in Settings; others will not. // Example: array('mail.example.com', 'mail2.example.org'); +// Default is NULL (all hosts supported). $config['password_hosts'] = null; // Enables saving the new password even if it matches the old password. Useful @@ -307,6 +308,10 @@ $config['password_cpanel_username'] = 'username'; // The cPanel admin password $config['password_cpanel_password'] = 'password'; +// The cPanel admin hash +// If you prefer to use a hash instead of plain password, enter it below. Hash takes precedence over password auth +$config['password_cpanel_hash'] = ''; + // The cPanel port to use $config['password_cpanel_port'] = 2087;