ispCP - Board - Support
RoundCube Guide by Bene - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Contributions Area (/forum-40.html)
+--- Forum: Howtos (/forum-41.html)
+--- Thread: RoundCube Guide by Bene (/thread-6802.html)

Pages: 1 2


RoundCube Guide by Bene - c0urier - 05-26-2009 08:47 PM

Hi,

Regarding this HowTO by Bene:
http://www.isp-control.net/documentation/howto/mail/install_roundcube_for_webmail

Wouldn't it be clever to remove the last section where it refers to a server not responding?
It's not possible to follow the guide, when the link's are not active. Else the guide is brilliant, this is just a suggestion!


RE: RoundCube Guide by Bene - BeNe - 05-26-2009 09:10 PM

I corrected/updated the Links! Thanks for the info.
Sorry for this, but i lost the dyndns domain Sad
I switched over to my Domain.

Greez BeNe


RE: RoundCube Guide by Bene - c0urier - 05-26-2009 09:15 PM

Hi Bene,

No need to say sorry - This guide is brilliant elsewise, but looking forward to the links are updated. SuperB Job !!!!!


RE: RoundCube Guide by Bene - BeNe - 05-26-2009 09:19 PM

We started to upload all here on this Project Server --> http://addons.isp-control.net because of such problems.
But there are still many uploads and changes needed.

Big thanks for the Reputation Smile

Greez BeNe


RE: RoundCube Guide by Bene - c0urier - 05-26-2009 09:24 PM

I can only say that Im thrilled that there is so many contributors here, regarding guides - workarounds etc. It's a pleasure following this project and that people always respond so fast if problems occurs.

And again don't thank, just continue doing such a nice job - It's us the users who thank you!


RE: RoundCube Guide by Bene - kurdak - 06-08-2009 03:02 AM

Hello, files func.inc and save_prefs.inc are unavailable.
Please upload this files.
Thanks for great howto.


RE: RoundCube Guide by Bene - BeNe - 06-08-2009 03:46 AM

Sure ?
Please check http://addons.isp-control.net/unofficial/rc_pw.tar.gz

Greez BeNe


RE: RoundCube Guide by Bene - mediman - 06-16-2009 08:40 PM

(06-08-2009 03:46 AM)BeNe Wrote:  Sure ?
Please check http://addons.isp-control.net/unofficial/rc_pw.tar.gz

Greez BeNe

I copied safe_prefs.inc from the above tar, but there was a prob: also with correct passwords the pwdfailed error was called, but the password was saved correctly.

I changed the safe_prefs little bit and now it works for me. i changed it also this way that too short passwords produce pwdfailed1 error and password1 != password2 pwdfailed2 error.

here my changes

PHP Code:
// Password MOD
if (isset($_POST['_password']) && !empty($_POST['_password']))


   
$tmpUser $_SESSION['username'];
   
$tmpPWD1 = ($_POST['_password']);
   
$tmpPWD2 = ($_POST['_password2']);

    if(
strlen($tmpPWD2)<6) {    
      
$OUTPUT->show_message('pwdfailed1''error');
      
$passwordError=TRUE;
    }
      if (
$tmpPWD1 != $tmpPWD2) { 
      
$OUTPUT->show_message('pwdfailed2''error');
      
$passwordError=TRUE;
    }

    if(!
$passwordError) {    
      
$encPass encrypt_db_password($tmpPWD2);      
      
mysql_query("UPDATE ispcp.mail_users SET mail_pass='$encPass', status='change' WHERE mail_addr='$tmpUser'") or die (mysql_error());      
      
send_request();
// End Password MOD 

mediman


RE: RoundCube Guide by Bene - BeNe - 06-16-2009 11:06 PM

Cool Big Thanks - i will test it!

Greez BeNe


RE: RoundCube Guide by Bene - mediman - 06-17-2009 03:36 AM

Strings for $passworderror

EN
$pwdfailed1 "Your password is too short (Min. 6 chars)"
$pwdfailed2 "Your passwords are different"

DE
$pwdfailed1 "Das Passwort ist zu kurz (mind. 6 Zeichen)"
$pwdfailed2 "Die Passwörter sind nicht gleich"

mediman