Update config.inc.php.dist

Add support for cPanel remote access hash (choice between hash auth and plain password auth).
pull/5252/head
Julian Matz 9 years ago
parent 614f4413ae
commit a4c6aec76a

@ -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;

Loading…
Cancel
Save