ISPConfig 3 + SquirrelMail + change_sqlpass

Hardflip

New Member
Guten Abend/Morgen Community,

ich habe ein Problem mit SquirrelMail. Ich will meinen Usern anbieten in SquirrelMail ihr E-Mail Passwort zu ändern mit den Plugin change_sqlpass.
Ich habe soweit auch alles eingerichtet und bin mich sicher das ich das richtig habe nur bekomm ich immer den fehler "Your old password does not match". Das kann aber nicht sein das mein Passwort 100%ig stimmt.
Hier mal den Code der config von change_sqlpass.
Danke schonmal Jungs

PHP:
<?php
[=]
   global $csp_dsn, $password_update_queries, $lookup_password_query,
          $force_change_password_check_query, $password_encryption,
          $csp_salt_query, $csp_salt_static, $csp_secure_port,
          $csp_non_standard_http_port, $csp_delimiter, $csp_debug,
          $min_password_length, $max_password_length, $include_digit_in_password,
          $include_uppercase_letter_in_password, $include_lowercase_letter_in_password,
          $include_nonalphanumeric_in_password;

[=]

   $csp_dsn = 'mysql://USERNAME:PASSWORT@localhost/dbispconfig';

[=]

   $lookup_password_query = 'SELECT count(*) FROM mail_user WHERE email = "%1" AND password = %4';

[=]

$password_update_queries = array('UPDATE mail_user SET password = %4 WHERE email = "%1"');

[=]

   $force_change_password_check_query = '';

[=]

   $password_encryption = 'MYSQLENCRYPT';

[=]

   $csp_salt_static = 'LEFT(password, 2)';
   
[=]

   $csp_secure_port = 0;

[=]

   $csp_non_standard_http_port = 0;

[=]

   $min_password_length = 6;
   $max_password_length = 0;
   $include_digit_in_password = 0;
   $include_uppercase_letter_in_password = 0;
   $include_lowercase_letter_in_password = 0;
   $include_nonalphanumeric_in_password = 0;

[=]

   $csp_delimiter = '@';
  
[=]

   $csp_debug = 0;
?>
 

Werbung

Top