Author Topic: [0.3.1] Syscp + Passwort ändern  (Read 5270 times)

Offline ramstein

  • Newbie
  • *
  • Posts: 8
[0.3.1] Syscp + Passwort ändern
« on: November 02, 2009, 06:25:17 AM »
Hallo,

Das Plugin "password" für SysCP wird wie folgt verwendet.

Bitte im Plugin Ordner die config.inc.php anpassen:

// SQL Driver options
// ------------------
// PEAR database DSN for performing the query. By default
// Roundcube DB settings are used.
$rcmail_config['password_db_dsn'] = 'mysql://syscp:@localhost/syscp';

// The SQL query used to change the password.
// The query can contain the following macros that will be expanded as follows:
//      %p is replaced with the plaintext new password
//      %c is replaced with the crypt version of the new password, MD5 if available
//         otherwise DES.
//      %o is replaced with the password before the change
//      %n is replaced with the hashed version of the new password
//      %q is replaced with the hashed password before the change
//      %h is replaced with the imap host (from the session info)
//      %u is replaced with the username (from the session info)
//      %l is replaced with the local part of the username
//         (in case the username is an email address)
//      %d is replaced with the domain part of the username
//         (in case the username is an email address)
// Escaping of macros is handled by this module.
// Default: "SELECT update_passwd(%c, %u)"
$rcmail_config['password_query'] = "UPDATE `mail_users` SET `password` = %p, `password_enc` = ENCRYPT(%p) WHERE `username` = %u";