Current time: 04-18-2024, 10:07 PM Hello There, Guest! (LoginRegister)


Thread Closed 
HOWTO allow mail password changes in webmail (squirrelmail) IspCP 1.0
Author Message
balloo Offline
Newbie
*

Posts: 5
Joined: Apr 2009
Reputation: 0
Post: #1
HOWTO allow mail password changes in webmail (squirrelmail) IspCP 1.0
I make a modification of this guide to enable password changes under encrypted version of IspCP (RC7 or 1.0).

1. First of all follow the steps 1 and 2 from here:
http://isp-control.net/documentation/how...ebmailpass

Do no follow the next step 3, here are my changes:

2. Then you have to change this two files:

/var/www/ispcp/gui/tools/webmail/plugins/change_sqlpass/config.php
(create the file if not exists)

Replace the content by:
(replace the string ###greatpassword### with your custom password set in the previous step 2)

PHP Code:
<?php

/**
  * SquirrelMail Change SQL Password Plugin
  * Copyright (C) 2001-2002 Tyler Akins
  *               2002 Thijs Kinkhorst <kink@users.sourceforge.net>
  *               2002-2005 Paul Lesneiwski <paul@openguild.net>
  * This program is licensed under GPL. See COPYING for details
  *
  * @package plugins
  * @subpackage Change SQL Password
  *
  */

   // Global Variables, don't touch these unless you want to break the plugin
   //
   
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,
      
$lookup_password_query_get_id$mail_id;

   
$mail_id null;


   
// csp_dsn
   //
   // Theoretically, any SQL database supported by Pear should be supported
   // here.  The DSN (data source name) must contain the information needed
   // to connect to your database backend. A MySQL example is included below.
   // For more details about DSN syntax and list of supported database types,
   // please see:
   //   http://pear.php.net/manual/en/package.database.db.intro-dsn.php
   //
   //$csp_dsn = 'mysql://user:password@localhost/email_users';

   
$csp_dsn 'mysql://ispcp-mail-user:###greatpassword###@localhost/ispcp';


   
// lookup_password_query
   //
   // This plugin will always verify the user's old password
   // against their login password, but an extra check can also
   // be done against the database for more security if you
   // desire.  If you do not need the extra password check,
   // make sure this setting is empty.
   //
   // This is a query that returns a positive value if a user
   // and password pair are found in the database.
   //
   // This query should return one value (one row, one column), the
   // value being ideally a one or a zero, simply indicating that 
   // the user/password pair does in fact exist in the database.
   //
   //   %1 in this query will be replaced with the full username
   //      (including domain), such as "jose@example.com"
   //   %2 in this query will be replaced with the username (without
   //      any domain portion), such as "jose"
   //   %3 in this query will be replaced with the domain name,
   //      such as "example.com"
   //   %4 in this query will be replaced with the current (old)
   //      password in whatever encryption format is needed per other
   //      plugin configuration settings (Note that the syntax of
   //      the password will be provided depending on your encryption
   //      choices, so you NEVER need to provide quotes around this
   //      value in the query here.)
   //   %5 in this query will be replaced with the current (old)
   //      password in unencrypted plain text.  If you do not use any
   //      password encryption, %4 and %5 will be the same values,
   //      except %4 will have double quotes around it and %5 will not.
   //
   //$lookup_password_query = '';
   // TERRIBLE SECURITY: $lookup_password_query = 'SELECT count(*) FROM users WHERE username = "%1" AND plain_password = "%5"';
   //$lookup_password_query = 'SELECT count(*) FROM users WHERE username = "%1" AND crypt_password = %4';

   
$lookup_password_query "SELECT COUNT(DISTINCT t1.`mail_id`) = 1
        FROM `mail_users` t1
                LEFT JOIN `domain` t2 USING ( `domain_id` )
                LEFT JOIN `domain_aliasses` t3 USING ( `domain_id` )
                LEFT JOIN `subdomain` t4 USING ( `domain_id` )
        WHERE t1.`mail_acc` = '%2' AND t1.`mail_pass` = %4
        AND (
                ( t1.`mail_type` = 'normal_mail' AND t2.`domain_name` = '%3' )
                OR ( t1.`mail_type` = 'alias_mail' AND t3.`alias_name` = '%3' AND t3.`alias_id` = t1.`sub_id` )
                OR ( t1.`mail_type` = 'subdom_mail'AND CONCAT( t4.`subdomain_name` , '.', t2.`domain_name` ) = '%3' AND t4.`subdomain_id` = t1.`sub_id` )
        )"
;

   
$lookup_password_query_get_id "SELECT DISTINCT t1.`mail_id`
        FROM `mail_users` t1
                LEFT JOIN `domain` t2 USING ( `domain_id` )
                LEFT JOIN `domain_aliasses` t3 USING ( `domain_id` )
                LEFT JOIN `subdomain` t4 USING ( `domain_id` )
        WHERE t1.`mail_acc` = '%2' AND t1.`mail_pass` = %4
        AND (
                ( t1.`mail_type` = 'normal_mail' AND t2.`domain_name` = '%3' )
                OR ( t1.`mail_type` = 'alias_mail' AND t3.`alias_name` = '%3' AND t3.`alias_id` = t1.`sub_id` )
                OR ( t1.`mail_type` = 'subdom_mail' AND CONCAT( t4.`subdomain_name`, '.', t2.`domain_name` ) = '%3' AND t4.`subdomain_id` = t1.`sub_id` )
        )"
;


   
// password_update_queries
   //
   // An array of SQL queries that will all be executed 
   // whenever a password change attempt is made.
   //
   // Any number of queries may be included here.
   // The queries will be executed in the order given here.
   //
   //   %1 in all queries will be replaced with the full username
   //      (including domain), such as "jose@example.com" 
   //   %2 in all queries will be replaced with the username (without 
   //      any domain portion), such as "jose"
   //   %3 in all queries will be replaced with the domain name, 
   //      such as "example.com"
   //   %4 in all queries will be replaced with the new password
   //      in whatever encryption format is needed per other
   //      plugin configuration settings (Note that the syntax of 
   //      the password will be provided depending on your 
   //      encryption choices, so you NEVER need to provide quotes 
   //      around this value in the queries here.)
   //   %5 in all queries will be replaced with the new password
   //      in unencrypted plain text - BEWARE!  If you do not use
   //      any password encryption, %4 and %5 will be the same 
   //      values, except %4 will have double quotes around it
   //      and %5 will not.
   //
   //$password_update_queries = array(
     //       'UPDATE users SET crypt_password = %4 WHERE username = "%1"',
//            'UPDATE user_flags SET force_change_pwd = 0 WHERE username = "%1"',
//            'UPDATE users SET crypt_password = %4, force_change_pwd = 0 WHERE username = "%1"',
       //                            );

   
$password_update_queries = array(
        
"UPDATE `mail_users` SET `mail_pass` =  %4, status = 'change' WHERE mail_id = %6",
   );



   
// force_change_password_check_query
   //
   // A query that checks for a flag that indicates if a user
   // should be forced to change their password.  This query
   // should return one value (one row, one column) which is
   // zero if the user does NOT need to change their password, 
   // or one if the user should be forced to change it now. 
   //
   // This setting should be an empty string if you do not wish
   // to enable this functionality.
   //
   //   %1 in this query will be replaced with the full username
   //      (including domain), such as "jose@example.com" 
   //   %2 in this query will be replaced with the username (without 
   //      any domain portion), such as "jose"
   //   %3 in this query will be replaced with the domain name, 
   //      such as "example.com"
   //
   //$force_change_password_check_query = 'SELECT IF(force_change_pwd = "yes", 1, 0) FROM users WHERE username = "%1"';
   //$force_change_password_check_query = 'SELECT force_change_pwd FROM users WHERE username = "%1"';
   
$force_change_password_check_query '';



   
// password_encryption
   //
   // What encryption method do you use to store passwords
   // in your database?  Please use one of the following,
   // exactly as you see it:
   //
   //   NONE          Passwords are stored as plain text only
   //   MYSQLPWD      Passwords are stored using the MySQL password() function
   //   MYSQLENCRYPT  Passwords are stored using the MySQL encrypt() function 
   //   PHPCRYPT      Passwords are stored using the PHP crypt() function 
   //   MD5CRYPT      Passwords are stored using encrypted MD5 algorithm
   //   MD5           Passwords are stored as MD5 hash
   //
   //ISPCP: encrypt_db_password
   
$password_encryption 'ISPCP';



   
// csp_salt_query
   // csp_salt_static
   //
   // Encryption types that need a salt need to know where to get
   // that salt.  If you have a constant, known salt value, you
   // should define it in $csp_salt_static.  Otherwise, leave that
   // value empty and define a value for the $csp_salt_query.
   //
   // Leave both values empty if you do not need (or use) salts
   // to encrypt your passwords.
   //
   // The query should return one value (one row, one column) which 
   // is the salt value for the current user's password.  This
   // query is ignored if $csp_salt_static is anything but empty.
   //
   //   %1 in this query will be replaced with the full username
   //      (including domain), such as "jose@example.com"
   //   %2 in this query will be replaced with the username (without
   //      any domain portion), such as "jose"
   //   %3 in this query will be replaced with the domain name,
   //      such as "example.com"
   //
   //$csp_salt_static = 'LEFT(crypt_password, 2)';
   //$csp_salt_static = '"a4"';  // use this format with MYSQLENCRYPT
   //$csp_salt_static = '$2$blowsomefish$';  // use this format with PHPCRYPT
   
$csp_salt_static '';

   
//$csp_salt_query = 'SELECT SUBSTRING_INDEX(crypt_password, '$', 1) FROM users WHERE username = "%1"';
   //$csp_salt_query = 'SELECT SUBSTRING(crypt_password, (LENGTH(SUBSTRING_INDEX(crypt_password, '$', 2)) + 2)) FROM users WHERE username = "%1"';
   //$csp_salt_query = 'SELECT salt FROM users WHERE username = "%1"';
   
$csp_salt_query '';



   
// csp_secure_port
   // 
   // You may ensure that SSL encryption is used during password 
   // change by setting this to the port that your HTTPS is served
   // on (443 is typical).  Set to zero if you do not wish to force
   // an HTTPS connection when users are changing their passwords.
   //
   // You may override this value for certain domains, users, or
   // service levels through the Virtual Host Login (vlogin) plugin 
   // by setting a value(s) for $vlogin_csp_secure_port in the vlogin
   // configuration.
   //
   
$csp_secure_port 0;
   
//$csp_secure_port = 443;



   // csp_non_standard_http_port
   //
   // If you serve standard HTTP web requests on a non-standard
   // port (anything other than port 80), you should specify that
   // port number here.  Set to zero otherwise.
   //
   // You may override this value for certain domains, users, or
   // service levels through the Virtual Host Login (vlogin) plugin 
   // by setting a value(s) for $vlogin_csp_non_standard_http_port 
   // in the vlogin configuration.
   //
   //$csp_non_standard_http_port = 8080;
   
$csp_non_standard_http_port 0;



   
// min_password_length
   // max_password_length
   // include_digit_in_password
   // include_uppercase_letter_in_password
   // include_lowercase_letter_in_password
   // include_nonalphanumeric_in_password
   //
   // You can set the minimum and maximum password lengths that
   // you accept or leave those settings as zero to indicate that
   // no limit should be applied.
   //
   // Turn on any of the other settings here to check that the
   // new password contains at least one digit, upper case letter,
   // lower case letter and/or one non-alphanumeric character.
   //
   
$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
   //
   // if your system has usernames with something other than
   // an "@" sign separating the user and domain portion,
   // specify that character here
   //
   //$csp_delimiter = '|';
   
$csp_delimiter '@';
   


   
// debug mode
   //
   
$csp_debug 0;



?>


/var/www/ispcp/gui/tools/webmail/plugins/change_sqlpass/functions.php

Replace the content by:

PHP Code:
<?php

/**
  * SquirrelMail Change SQL Password Plugin
  * Copyright (C) 2001-2002 Tyler Akins
  *               2002 Thijs Kinkhorst <kink@users.sourceforge.net>
  *               2002-2005 Paul Lesneiwski <paul@openguild.net>
  * This program is licensed under GPL. See COPYING for details
  *
  * @package plugins
  * @subpackage Change SQL Password
  *
  */


if (!defined('PASSWORD_ENCRYPTION_NONE'))
   
define('PASSWORD_ENCRYPTION_NONE''NONE');
if (!
defined('PASSWORD_ENCRYPTION_MYSQL_PASSWORD'))
   
define('PASSWORD_ENCRYPTION_MYSQL_PASSWORD''MYSQLPWD');
if (!
defined('PASSWORD_ENCRYPTION_MYSQL_ENCRYPT'))
   
define('PASSWORD_ENCRYPTION_MYSQL_ENCRYPT''MYSQLENCRYPT');
if (!
defined('PASSWORD_ENCRYPTION_PHPCRYPT'))
   
define('PASSWORD_ENCRYPTION_PHPCRYPT''PHPCRYPT');
if (!
defined('PASSWORD_ENCRYPTION_MD5CRYPT'))
   
define('PASSWORD_ENCRYPTION_MD5CRYPT''MD5CRYPT');
if (!
defined('PASSWORD_ENCRYPTION_MD5'))
   
define('PASSWORD_ENCRYPTION_MD5''MD5');
if (!
defined('PASSWORD_ENCRYPTION_ISPCP'))
   
define('PASSWORD_ENCRYPTION_ISPCP''ISPCP');


//Custom IspCP encrypt password
function encrypt_db_password($db_pass) {
    require(
'../../../../include/ispcp-db-keys.php');

        if (
extension_loaded('mcrypt') || @dl('mcrypt.' PHP_SHLIB_SUFFIX)) {
                
$td = @mcrypt_module_open (MCRYPT_BLOWFISH'''cbc''');
                
// Create key
                
$key $ispcp_db_pass_key;
                
// Create the IV and determine the keysize length
                
$iv $ispcp_db_pass_iv;

                
//compatibility with used perl pads
                
$block_size=@mcrypt_enc_get_block_size($td);
                
$strlen=strlen($db_pass);

                
$pads=$block_size-$strlen $block_size;

                
$db_pass .= str_repeat(' '$pads);

                
// Initialize encryption
                
@mcrypt_generic_init ($td$key$iv);
                
//Encrypt string
                
$encrypted = @mcrypt_generic ($td$db_pass);
                @
mcrypt_generic_deinit($td);
                @
mcrypt_module_close($td);
                
$text = @base64_encode("$encrypted");
                
$text=trim($text);
                return 
$text;
        } else {
                
//system_message("ERROR: The php-extension 'mcrypt' not loaded!");
                
die("ERROR: The php-extension 'mcrypt' not loaded!");
        }
}


/**
  * Include Pear DB class
  *
  */
function csp_get_pear_db()
{

   global 
$csp_debug;

   
load_config('change_sqlpass', array('config.php'));


   
// mask include errors if not in debug mode
   //
   
if ($csp_debug)
      
$if_statement 'return !include_once(\'DB.php\');';
   else
      
$if_statement 'return !@include_once(\'DB.php\');';
   
   if (eval(
$if_statement))
   {
      global 
$color;
      
bindtextdomain('change_sqlpass'SM_PATH 'locale');
      
textdomain('change_sqlpass');
      
$text _("Could not find Pear DB library");
      
bindtextdomain('squirrelmail'SM_PATH 'locale');
      
textdomain('squirrelmail');
      
plain_error_message($text$color);
      exit;
   }

}



/**
  * Get a database connection
  *
  * If a connection has already been opened, return that,
  * otherwise, open a new connection.
  *
  * @return object The database connection handle.
  *
  */
function csp_get_database_connection()
{

   global 
$csp_db_connection$csp_dsn;


   
load_config('change_sqlpass', array('config.php'));
   
csp_get_pear_db();


   
// make a new connection if needed; exit if failure
   //
   
if (empty($csp_db_connection))
   {

      
$csp_db_connection DB::connect($csp_dsn);
      if (
DB::isError($csp_db_connection))
      {
         global 
$color;
         
bindtextdomain('change_sqlpass'SM_PATH 'locale');
         
textdomain('change_sqlpass');
         
$text _("Could not make database connection");
         
bindtextdomain('squirrelmail'SM_PATH 'locale');
         
textdomain('squirrelmail');
         
plain_error_message($text$color);
         exit;
      }
      
$csp_db_connection->setFetchMode(DB_FETCHMODE_ORDERED);

   }


   
// return connection
   //
   
return $csp_db_connection;

}



/**
  * Parse current user's username
  *
  * @return array A list, in this order, of the full username
  *               with domain ("user@example.com"), the user
  *               name only ("user"), and the domain only ("example.com")
  *
  */
function csp_parse_username()
{

   global 
$username$domain$csp_delimiter;

   
load_config('change_sqlpass', array('config.php'));

   if (
strpos($username$csp_delimiter) !== FALSE)
   {
      list(
$user$dom) = explode($csp_delimiter$username);
      
$full_username $username;
   }
   else
   {
      
$user $username;
      
$dom $domain;
      
$full_username $user $csp_delimiter $dom;
   }
   
   return array(
$full_username$user$dom);

}



/**
  * Determines if user has the force password flag turned on
  *
  * @return boolean TRUE if force password flag is on
  *                 for the current user, FALSE otherwise
  *
  */
function check_password_force_flag()


   global 
$force_change_password_cache$force_change_password_check_query$csp_debug;


   
// return cached value if we've already been here
   //
   
if (!empty($force_change_password_cache))
      return 
$force_change_password_cache == 'yes';


   
load_config('change_sqlpass', array('config.php'));


   
// if not being used, just return FALSE
   //
   
if (empty($force_change_password_check_query)) return FALSE;


   
// get database connection
   //
   
$db csp_get_database_connection();


   list(
$full_username$user$dom) = csp_parse_username();


   
$sql $force_change_password_check_query;
   
$sql str_replace(array('%1''%2''%3'), array($full_username$user$dom), $sql);
   
$force $db->getAll($sql);


   
// check for database errors
   //
   
if (DB::isError($force))
   {
      global 
$color;
      
$msg $force->getMessage();
      
bindtextdomain('change_sqlpass'SM_PATH 'locale');
      
textdomain('change_sqlpass');
      
$text sprintf(_("DATABASE ERROR: could not lookup force change password flag: %s"), ($csp_debug $sql ' ---- ' $msg ''));
      
bindtextdomain('squirrelmail'SM_PATH 'locale');
      
textdomain('squirrelmail');
      
plain_error_message($text$color);
      exit;
   }


   
// debug if needed
   //
   
if ($csp_debug)
      echo 
sprintf(_("Force change password query result is: %s<br />Query was: %s<br /><br />"), $force[0][0], $sql);


   
// get flag value out of array structure
   //
   
if ($force[0][0])
   {
      
$force_change_password_cache 'yes';
      
sqsession_register($force_change_password_cache'csp_was_force_mode');
   }
   else 
$force_change_password_cache 'no';
   return 
$force_change_password_cache == 'yes';

}



/**
  * Forces user into change password screen if needed
  *
  */
function csp_password_force_do()
{
   
   
// do we need to hijack the page and force password change?
   //
   
if (check_password_force_flag())
   {
   
      
// validate and process a password submission
      //
      
if (sqgetGlobalVar('csp_submit_change'$csp_submit_changeSQ_FORM))
         
$messages process_password_change_request();


      else
      {
         
csp_redirect_to_ssl_connection();
         
$messages = array();
      }


      
show_change_pwd_screen($messages);
      echo 
'</body></html>';
      exit;
      
   }  
      
}     



/**
  * Show change password option section on options page
  *
  */
function csp_show_optblock_do()
{

   global 
$optpage_blocks$base_uri;
   if (empty(
$base_uri)) $base_uri sqm_baseuri();
        
   
bindtextdomain('change_sqlpass'SM_PATH 'locale');
   
textdomain('change_sqlpass');

   
$optpage_blocks[] = array(
      
'name' => _("Change Password"),
      
'url' => $base_uri 'plugins/change_sqlpass/options.php',
      
'desc' => _("Use this to change your email password."),
      
'js' => FALSE
   
);          
                
   
bindtextdomain('squirrelmail'SM_PATH 'locale');
   
textdomain('squirrelmail');

}       



/**
  * Shows status message at top of options screen
  * after password was changed
  *
  */
function csp_show_success_do()
{

   global 
$optpage_name;

        
   if (
sqgetGlobalVar('csp_change_success'$csp_change_successSQ_FORM))
   {

      
bindtextdomain('change_sqlpass'SM_PATH 'locale');
      
textdomain('change_sqlpass');

      if (
$csp_change_success == 'yes')
         
$optpage_name _("Password changed successfully.<br />Please use your new password to log in from now on.");
      else
         
$optpage_name _("Password change cancelled.<br />Your password has NOT been changed.");
                
      
bindtextdomain('squirrelmail'SM_PATH 'locale');
      
textdomain('squirrelmail');

   }
        
}       
 
 

/**
  * Check if session is HTTPS originally (for use later)
  *
  */
function csp_check_for_https_do()
{

   global 
$csp_secure_port;

   
load_config('change_sqlpass', array('config.php'));


   
// allow vlogin overrides of port settings
   //
   
if (!empty($vlogin_csp_secure_port))
      
$csp_secure_port $vlogin_csp_secure_port;


   if (!
$csp_secure_port)
      return;


   if (!
sqgetGlobalVar('SERVER_PORT'$SERVER_PORTSQ_SERVER))
      
$SERVER_PORT 0;


   
$is_https = ($csp_secure_port == $SERVER_PORT);


   
// make note if session was already encrypted in HTTPS
   //
   
if ($is_https && !sqgetGlobalVar('csp_was_already_encrypted_port'$csp_was_already_encrypted_portSQ_SESSION))
      
sqsession_register($SERVER_PORT'csp_was_already_encrypted_port');

}



/**
  * Redirects to SSL/HTTPS connection when needed
  *
  * NOTE that this function will not return if 
  * the redirection is applied, but it will return
  * if none was needed (not using HTTPS connections
  * for this plugin, or we are already in HTTPS).
  *
  * @param string $target_uri The location to be 
  *                           redirected to (optional,
  *                           default is current request
  *                           address)
  *
  */
function csp_redirect_to_ssl_connection($target_uri='')
{

   global 
$csp_secure_port;


   
load_config('change_sqlpass', array('config.php'));


   
// allow vlogin overrides of port settings
   //
   
if (!empty($vlogin_csp_secure_port)) 
      
$csp_secure_port $vlogin_csp_secure_port;


   if (empty(
$target_uri))
      
// TODO: I don't think this includes query string, but 
      //       I don't think we will ever need it here(??)
      
$target_uri php_self(); 
   if (
strpos($target_uri'/') !== 0)
      
$target_uri '/' $target_uri;


   if (!
$csp_secure_port
      return;


   if (!
sqgetGlobalVar('SERVER_PORT'$SERVER_PORTSQ_SERVER))
      
$SERVER_PORT 0;


   
$is_https = ($csp_secure_port == $SERVER_PORT);


   
// and redirect if need be
   //
   
if (!$is_https)
   {

      
sqgetGlobalVar('HTTP_HOST'$HTTP_HOSTSQ_SERVER);

      
session_write_close();

      if (
$csp_secure_port != 443)
         
header('Location: https://' $HTTP_HOST ':' $csp_secure_port $target_uri);
      else
         
header('Location: https://' $HTTP_HOST $target_uri);

      echo 
"\n\n";
      exit;

   }

}



/**
  * Render change password screen
  *
  * NOTE that this function will close out all the main tables
  * and everything that is otherwise started by SquirrelMail
  * page header functions, etc., all except the final closing
  * body and html tags.
  *
  * @param mixed  $messages   A list of any messages to be shown to user
  *                           (or a single message string) (optional; 
  *                           default = no messages)
  *
  */
function show_change_pwd_screen($messages='')
{
   
   global 
$color$csp_non_standard_http_port$base_uri,
          
$csp_secure_port;


   
load_config('change_sqlpass', array('config.php'));


   
// allow vlogin overrides of port settings
   //
   
if (!empty($vlogin_csp_non_standard_http_port)) 
      
$csp_non_standard_http_port $vlogin_csp_non_standard_http_port;
   if (!empty(
$vlogin_csp_secure_port))
      
$csp_secure_port $vlogin_csp_secure_port;


   if (!
is_array($messages)) $messages = array($messages);


   
$force check_password_force_flag();
   if (
$force)
      
array_unshift($messages_("Periodically, we ask that you change your password.  This is done to help maintain good security for your email account."));


   
$message_text '';
   foreach (
$messages as $line)
      if (!empty(
$line))
         
$message_text .= htmlspecialchars($line) . "<br />\n";


   
// figure out where the cancel button should send the user
   // if the session was previously HTTPS, make sure it stays as such
   //
   
sqgetGlobalVar('csp_was_already_encrypted_port'$csp_was_already_encrypted_portSQ_SESSION);
   
sqgetGlobalVar('HTTP_HOST'$HTTP_HOSTSQ_SERVER);
   if (empty(
$base_uri)) $base_uri sqm_baseuri();
   
$loc $base_uri 'src/options.php?optpage=xx&optmode=submit&csp_change_success=no';
   if (
$csp_was_already_encrypted_port == 443)
      
$cancel_location 'https://' $HTTP_HOST $loc;
   else if (
$csp_was_already_encrypted_port)
      
$cancel_location 'https://' $HTTP_HOST ':' $csp_was_already_encrypted_port $loc;
   else if (
$csp_non_standard_http_port)
      
$cancel_location 'http://' $HTTP_HOST ':' $csp_non_standard_http_port $loc;
   else
      
$cancel_location 'http://' $HTTP_HOST $loc;


   
bindtextdomain('change_sqlpass'SM_PATH 'locale');
   
textdomain('change_sqlpass');


   echo 
'<table width="95%" align="center" cellpadding="2" cellspacing="2" border="0">'
      
'<tr><td bgcolor="';

   if (!
$force)
      echo 
$color[0] . '">';
   else
      echo 
$color[2] . '">';


   if (!
sqgetGlobalVar('SERVER_PORT'$SERVER_PORTSQ_SERVER))
      
$SERVER_PORT 0;
   
$is_https = ($csp_secure_port == $SERVER_PORT || (!$csp_secure_port && $SERVER_PORT == 443));


   echo 
'<center><b>';
   if (
$is_https
      echo 
_("Change Password - Secure");
   else
      echo 
_("Change Password"); 
   echo 
'</b></center></td>';


   if (!empty(
$message_text))
      echo 
"<tr><td>\n$message_text</td></tr>\n";


?>


   <tr><td>


   <form method="post" action="">
   <table>
      <tr>
         <th align="right"><?php echo _("Old Password"); ?>:</th>
         <td><input type="password" name="cp_oldpass" value="" size="20"></td>
      </tr>
      <tr>
         <th align="right"><?php echo _("New Password"); ?>:</th>
         <td><input type="password" name="cp_newpass" value="" size="20"></td>
      </tr>
      <tr>
         <th align="right"><?php echo _("Verify New Password"); ?>:</th>
         <td><input type="password" name="cp_verify" value="" size="20"></td>
      </tr>
      <tr>
         <td align="right" colspan="2">
            <input type="hidden" name="csp_submit_change" value="1">
            <input type="submit" value="<?php echo _("Submit"); ?>">


<?php


   
if (!$force)
      echo 
'<input type="button" value="' _("Cancel") . '" onclick="document.location=\'' $cancel_location '\'" name="csp_submit_cancel">';


?>


         </td>
      </tr>
   </table>
   </td></tr>
   </tr></table>


<?php


   bindtextdomain
('squirrelmail'SM_PATH 'locale');
   
textdomain('squirrelmail');


}



/**
  * Get salt used to encrypt password
  *
  * @return string The salt used to generate the 
  *                user's current/old password.
  *
  */
function get_password_salt()
{

   global 
$csp_salt_query$csp_salt_static$csp_debug;

   
load_config('change_sqlpass', array('config.php'));

   if (!empty(
$csp_salt_static)) return $csp_salt_static;
   if (empty(
$csp_salt_query)) return '';


   
// get database connection
   //
   
$db csp_get_database_connection();


   list(
$full_username$user$dom) = csp_parse_username();


   
$sql $csp_salt_query;
   
$sql str_replace(array('%1''%2''%3'), array($full_username$user$dom), $sql);
   
$salt $db->getAll($sql);


   
// check for database errors
   //
   
if (DB::isError($salt))
   {
      global 
$color;
      
$msg $salt->getMessage();
      
$text sprintf(_("DATABASE ERROR: could not lookup salt: %s"), ($csp_debug $sql ' ---- ' $msg ''));
      
bindtextdomain('squirrelmail'SM_PATH 'locale');
      
textdomain('squirrelmail');
      
plain_error_message($text$color);
      exit;
   }


   
// debug if needed
   //
   
if ($csp_debug)
      echo 
sprintf(_("Password query result is: %s<br />Query was: %s<br /><br />"), $salt[0][0], $sql);


   
// return salt
   //
   
return $salt[0][0];

}



/**
  * Build encrypted password string
  *
  * @param string $password The password to encode
  *
  * @return string The given password in format ready for use in a
  *                database query.
  *
  */
function get_password_encrypt_string($password)
{

   global 
$password_encryption;

   
load_config('change_sqlpass', array('config.php'));

   
$salt get_password_salt();

   switch (
strtolower($password_encryption))
   {

      case 
strtolower(PASSWORD_ENCRYPTION_MYSQL_PASSWORD):
         return 
'password("' $password '")';

      case 
strtolower(PASSWORD_ENCRYPTION_MYSQL_ENCRYPT):
         if (empty(
$salt))
            return 
'encrypt("' $password '")';
         else
            return 
'encrypt("' $password '", ' $salt ')';

      case 
strtolower(PASSWORD_ENCRYPTION_PHPCRYPT):
         if (empty(
$salt))
            return 
'"' crypt($password) . '"';
         else
            return 
'"' crypt($password$salt) . '"';

      case 
strtolower(PASSWORD_ENCRYPTION_MD5CRYPT):
         return 
'"' md5crypt($password$salt) . '"';

      case 
strtolower(PASSWORD_ENCRYPTION_MD5):
         return 
'"' md5($password) . '"';

      case 
strtolower(PASSWORD_ENCRYPTION_ISPCP):
         return 
'"' encrypt_db_password($password) . '"';

      case 
strtolower(PASSWORD_ENCRYPTION_NONE):
      default:
         return 
'"' $password '"';

   }

}



/**
  * Validate password input
  *
  * @return array A list of messages describing problems
  *               found, or an empty array when everything
  *               validated.
  *
  */
function csp_validate_input()
{

   global 
$lookup_password_query$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,
      
$lookup_password_query_get_id$mail_id;


   
load_config('change_sqlpass', array('config.php'));


   
$messages = array();

   
sqgetGlobalVar('key'$keySQ_COOKIE);
   
sqgetGlobalVar('onetimepad'$onetimepadSQ_SESSION);

   
$password OneTimePadDecrypt($key$onetimepad);

   
sqgetGlobalVar('cp_oldpass'$cp_oldpassSQ_POST);
   
sqgetGlobalVar('cp_newpass'$cp_newpassSQ_POST);
   
sqgetGlobalVar('cp_verify'$cp_verifySQ_POST);


   
bindtextdomain('change_sqlpass'SM_PATH 'locale');
   
textdomain('change_sqlpass');


   if (empty(
$cp_oldpass))
      
array_push($messages_("You must type in your old password"));

   if (!empty(
$cp_oldpass) && $cp_oldpass != $password)
      
array_push($messages_("Your old password is not correct"));


   
// extra password check just to be twice as safe
   //
   
else if (!empty($cp_oldpass) && !empty($lookup_password_query))
   {
      
      
// get database connection
      //
      
$db csp_get_database_connection();


      list(
$full_username$user$dom) = csp_parse_username();
      
$encrypted_pwd get_password_encrypt_string($db->escapeSimple($cp_oldpass));


      
$sql $lookup_password_query;
      
$sql str_replace(array('%1''%2''%3''%4''%5'), 
                         array(
$full_username$user$dom$encrypted_pwd$db->escapeSimple($cp_oldpass)),
                         
$sql);
      
$db_password $db->getAll($sql);

      
$sql $lookup_password_query_get_id;
      
$sql str_replace(array('%1''%2''%3''%4''%5'),
                          array(
$full_username$user$dom$encrypted_pwd$db->escapeSimple($cp_oldpass)),
                       
$sql);
      
$mail_id $db->getAll($sql); // we need the id of the mail account, otherwise it's to hard to create a good pw update sql statement
      
if (count($mail_id) != 1) {
        
array_push($messages_("Problem detected: ".count($mail_id)." accounts found"));
      }

      
// check for database errors
      //
      
if (DB::isError($db_password))
      {
         global 
$color;
         
$msg $db_password->getMessage();
         
$text sprintf(_("DATABASE ERROR: could not lookup old password: %s"), ($csp_debug $sql ' ---- ' $msg ''));
         
bindtextdomain('squirrelmail'SM_PATH 'locale');
         
textdomain('squirrelmail');
         
plain_error_message($text$color);
         exit;
      }


      
// debug if needed
      //
      
if ($csp_debug)
         echo 
sprintf(_("Password query result is: %s<br />Query was: %s<br /><br />"), $db_password[0][0], $sql);


      
// now check password
      //
      
if (!$db_password[0][0])
         
array_push($messages_("Your old password does not match"));

   }


   if (empty(
$cp_newpass))
      
array_push($messages_("You must type in a new password"));

   
// prevent SQL injection
   //
   
if ($min_password_length && strlen($cp_newpass) < $min_password_length)
      
array_push($messagessprintf(_("Your new password is too short.  It must be at least %s characters long"), $min_password_length));

   if (
$max_password_length && strlen($cp_newpass) > $max_password_length
      
array_push($messagessprintf(_("Your new password is too long.  It must be no more than %s characters long"), $max_password_length));

   if (
$include_digit_in_password && !preg_match('/\d+/'$cp_newpass))
      
array_push($messages_("Please include at least one digit in your new password"));

   if (
$include_uppercase_letter_in_password && !preg_match('/[A-Z]+/'$cp_newpass)) 
      
array_push($messages_("Please include at least one upper-case letter in your new password"));

   if (
$include_lowercase_letter_in_password && !preg_match('/[a-z]+/'$cp_newpass))
      
array_push($messages_("Please include at least one lower-case letter in your new password"));

   if (
$include_nonalphanumeric_in_password && !preg_match('/[^a-zA-Z0-9]+/'$cp_newpass))
      
array_push($messages_("Please include at least one non-alphanumeric character (such as @, - or _) in your new password"));

   if (empty(
$cp_verify))
      
array_push($messages,
         
_("You must also type in your new password in the verify box"));

   if (!empty(
$cp_newpass) && $cp_verify != $cp_newpass)
      
array_push($messages_("Your new password does not match the verify password"));

   if (
$cp_oldpass == $cp_newpass)
      
array_push($messages_("Your new password must be different than your old password"));


   
bindtextdomain('squirrelmail'SM_PATH 'locale');
   
textdomain('squirrelmail');


   return 
$messages;

}



/**
  * Change the password for current login user
  *
  * @param string $password The new password.
  *
  * @return boolean TRUE if the password was changed successfully
  *
  */
function change_password($password)
{

   global 
$password_update_queries$csp_debug$base_uri,$mail_id;

   
load_config('change_sqlpass', array('config.php'));


   
// get database connection
   //
   
$db csp_get_database_connection();


   list(
$full_username$user$dom) = csp_parse_username();
   
$encrypted_pwd get_password_encrypt_string($db->escapeSimple($password));

   
// do all queries
   //
   
foreach ($password_update_queries as $query)
   {

      
$sql $query;
      
$sql str_replace(array('%1''%2''%3''%4''%5''%6'), 
                         array(
$full_username$user$dom$encrypted_pwd$db->escapeSimple($password), $mail_id[0][0]), 
                         
$sql);

      
// send query to database
      //
      
$result $db->query($sql);


      
// check for database errors
      //
      
if (DB::isError($result))
      {
         global 
$color;
         
$msg $result->getMessage();
         
$text sprintf(_("DATABASE ERROR: could not update password: %s"), ($csp_debug $sql ' ---- ' $msg ''));
         
bindtextdomain('squirrelmail'SM_PATH 'locale');
         
textdomain('squirrelmail');
         
plain_error_message($text$color);
//         return FALSE;
         
exit;
      }

   }

   
// send a signal to the ispcp request manager:
   
require_once('../../../../include/ispcp-functions.php');
   
send_request();

   
// Write new cookies for the password
   // 
   
if (empty($base_uri)) $base_uri sqm_baseuri();
   
$onetimepad OneTimePadCreate(strlen($password));
   
sqsession_register($onetimepad'onetimepad');
   
$key OneTimePadEncrypt($password$onetimepad);
   
sqsetcookie('key'$key0$base_uri);


   return 
TRUE;

}



/**
  * Process password submission
  *
  * Retrieves password submission from POST
  * and redirects the page request as appropriate
  * if the change is successful, otherwise the
  * function will simply return normally.
  *
  * @return array An array of any error messages, if 
  *               input/validation problems were found
  *               (does not return if password was
  *               changed successfully)
  *
  */
function process_password_change_request()
{

   
$messages csp_validate_input();
   if (empty(
$messages))
   {

      
sqgetGlobalVar('cp_newpass'$cp_newpassSQ_POST);


      
// if change is successful, redirect...
      //
      
if (change_password($cp_newpass))
      {

         
// if the session was previously HTTPS, make sure it stays as such
         //
         
sqgetGlobalVar('csp_was_already_encrypted_port'$csp_was_already_encrypted_portSQ_SESSION);
         
sqgetGlobalVar('HTTP_HOST'$HTTP_HOSTSQ_SERVER);
         
sqgetGlobalVar('csp_was_force_mode'$csp_was_force_modeSQ_SESSION);
         global 
$base_uri;
         if (empty(
$base_uri)) $base_uri sqm_baseuri();
         if (!empty(
$csp_was_force_mode))
            
$loc $base_uri 'src/right_main.php';
         else
            
$loc $base_uri 'src/options.php?optpage=xx&optmode=submit&csp_change_success=yes';
         if (
$csp_was_already_encrypted_port == 443)
            
$redirect_location 'https://' $HTTP_HOST $loc;
         else if (
$csp_was_already_encrypted_port)
            
$redirect_location 'https://' $HTTP_HOST ':' $csp_was_already_encrypted_port $loc;
         else if (
$csp_non_standard_http_port)
            
$redirect_location 'http://' $HTTP_HOST ':' $csp_non_standard_http_port $loc;
         else
            
$redirect_location 'http://' $HTTP_HOST $loc;


         
sqsession_unregister('csp_was_force_mode');
         
session_write_close();
         
header('Location: ' $redirect_location);
         echo 
"\n\n";
         exit;

      }

   }

   return 
$messages;

}



?>

I hope it should be usefull! Please tell me if you find mistakes or bugs!
04-15-2009 10:35 PM
Find all posts by this user
balloo Offline
Newbie
*

Posts: 5
Joined: Apr 2009
Reputation: 0
Post: #2
RE: HOWTO allow mail password changes in webmail (squirrelmail) IspCP 1.0
UPDATE:
The IspCP guys provides a new method to allow password changes in webmail. However, if you want to follow my alternative method, you can follow the steps 1 & 2 from here:
http://isp-control.net/documentation/how...1229931408
04-27-2009 09:11 PM
Find all posts by this user
koko92_national Offline
Junior Member
*

Posts: 70
Joined: Jul 2008
Reputation: 0
Post: #3
RE: HOWTO allow mail password changes in webmail (squirrelmail) IspCP 1.0
Can you give here step 1 and 2 because the link is inactive.
04-21-2010 02:48 AM
Find all posts by this user
balloo Offline
Newbie
*

Posts: 5
Joined: Apr 2009
Reputation: 0
Post: #4
RE: HOWTO allow mail password changes in webmail (squirrelmail) IspCP 1.0
These are the 2 first steps:

Step 1 - the plugin itself

We need the plugin change_sqlpass for squirrelmail - here
http://www.squirrelmail.org/plugin_view.php?id=25 is the description and here
http://www.squirrelmail.org/plugin_downl...5&rev=1226 the download...

Requires: SquirrelMail 1.2.8, Compatibility 2.0.4, Pear DB library SquirrelMail and Compatibility is ok by ispcp - PEAR DB should be separately installed...

We unpack the file in /var/www/ispcp/gui/tools/webmail/plugins/ so that the files come into /var/www/ispcp/gui/tools/webmail/plugins/change_sqlpass. Set ownership and permissions like the other plugins... (vu2000:www-data, -r--r--r--, dr-xr-xr-x).

Then we have to activate the plugin by adding a line to /var/www/ispcp/gui/tools/webmail/config/config_local.php:

PHP Code:
$plugins[26] = 'change_sqlpass'

(the index number should be higher than the ones from the already activated plugins...)


Step 2, a user for the database

We need to create a user in mysql which is used for the password change. Use a sql console (in the shell, in pma, whatever - as mysql-root).
(I adopted the statements from the old vhcs2 documentation)

Code:
GRANT USAGE ON ispcp.*
TO 'ispcp-mail-user'@'localhost' IDENTIFIED BY '###greatpassword###'
WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0;

GRANT SELECT (`domain_id`, `domain_name`
) ON `ispcp`.`domain` TO 'ispcp-mail-user'@'localhost';

GRANT SELECT (`domain_id`, `alias_id`, `alias_name`
) ON `ispcp`.`domain_aliasses` TO 'ispcp-mail-user'@'localhost';

GRANT SELECT (`domain_id`, `subdomain_id`, `subdomain_name`
) ON `ispcp`.`subdomain` TO 'ispcp-mail-user'@'localhost';

GRANT SELECT ( `mail_id`, `mail_acc`, `domain_id`, `sub_id`, `mail_type`, `status`, `mail_pass`),
UPDATE (`mail_pass` , `status`) ON `ispcp`.`mail_users` TO 'ispcp-mail-user'@'localhost';
04-21-2010 04:08 AM
Find all posts by this user
koko92_national Offline
Junior Member
*

Posts: 70
Joined: Jul 2008
Reputation: 0
Post: #5
RE: HOWTO allow mail password changes in webmail (squirrelmail) IspCP 1.0
Thank you! It works now just fine!
04-21-2010 04:34 AM
Find all posts by this user
Thread Closed 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)