Current time: 04-26-2024, 07:34 AM Hello There, Guest! (LoginRegister)


Post Reply 
RoundCube Guide by Bene
Author Message
c0urier Offline
Junior Member
*

Posts: 89
Joined: Jun 2007
Reputation: 1
Post: #1
RoundCube Guide by Bene
Hi,

Regarding this HowTO by Bene:
http://www.isp-control.net/documentation...or_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!
(This post was last modified: 05-26-2009 08:48 PM by c0urier.)
05-26-2009 08:47 PM
Visit this user's website Find all posts by this user Quote this message in a reply
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #2
RE: RoundCube Guide by Bene
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
05-26-2009 09:10 PM
Visit this user's website Find all posts by this user Quote this message in a reply
c0urier Offline
Junior Member
*

Posts: 89
Joined: Jun 2007
Reputation: 1
Post: #3
RE: RoundCube Guide by Bene
Hi Bene,

No need to say sorry - This guide is brilliant elsewise, but looking forward to the links are updated. SuperB Job !!!!!
05-26-2009 09:15 PM
Visit this user's website Find all posts by this user Quote this message in a reply
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #4
RE: RoundCube Guide by Bene
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
05-26-2009 09:19 PM
Visit this user's website Find all posts by this user Quote this message in a reply
c0urier Offline
Junior Member
*

Posts: 89
Joined: Jun 2007
Reputation: 1
Post: #5
RE: RoundCube Guide by Bene
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!
05-26-2009 09:24 PM
Visit this user's website Find all posts by this user Quote this message in a reply
kurdak Offline
Junior Member
*

Posts: 22
Joined: Jun 2009
Reputation: 0
Post: #6
RE: RoundCube Guide by Bene
Hello, files func.inc and save_prefs.inc are unavailable.
Please upload this files.
Thanks for great howto.
(This post was last modified: 06-08-2009 03:46 AM by kurdak.)
06-08-2009 03:02 AM
Find all posts by this user Quote this message in a reply
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #7
RE: RoundCube Guide by Bene
Sure ?
Please check http://addons.isp-control.net/unofficial/rc_pw.tar.gz

Greez BeNe
06-08-2009 03:46 AM
Visit this user's website Find all posts by this user Quote this message in a reply
mediman Offline


Posts: 2
Joined: Jun 2009
Reputation: 0
Post: #8
RE: RoundCube Guide by Bene
(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
(This post was last modified: 06-16-2009 08:43 PM by mediman.)
06-16-2009 08:40 PM
Visit this user's website Find all posts by this user Quote this message in a reply
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #9
RE: RoundCube Guide by Bene
Cool Big Thanks - i will test it!

Greez BeNe
06-16-2009 11:06 PM
Visit this user's website Find all posts by this user Quote this message in a reply
mediman Offline


Posts: 2
Joined: Jun 2009
Reputation: 0
Post: #10
RE: RoundCube Guide by Bene
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
06-17-2009 03:36 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


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