ispCP - Board - Support
Can I use IMP(part of Horde) as my WebMail - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega Development Area (/forum-1.html)
+--- Forum: General discussion (/forum-11.html)
+--- Thread: Can I use IMP(part of Horde) as my WebMail (/thread-7844.html)

Pages: 1 2


RE: Can I use IMP(part of Horde) as my WebMail - joximu - 10-23-2009 07:29 PM

Yes... encryption.

I have to change some things to get this working... - (I still use a RC6, but in a short time, I want to update to 1.0.3... - so the encryption is a must have!).

after I have the new version, I can release here...

/J


RE: Can I use IMP(part of Horde) as my WebMail - astern4ispcp@singakademie.at - 10-26-2009 10:31 AM

just poked through the ispcp code - it seems to be a base64 encoded blowfish encryption using mcrypt extension or library in cbc mode ( function encrypt_db_password in include/ispcp-config.php )

That is definitively different from crypt($plaintext, $salt) found in horde/lib/Horde/Auth.php

and too much to read in http://php.net/manual/en/function.crypt.php

A.


RE: Can I use IMP(part of Horde) as my WebMail - joximu - 10-26-2009 06:09 PM

yes - very important - the ispcp function has to be used to encrypt the password.

Because the encryption is reversable (there's also a decrypt) you cannot use a "normal" crypt function. And also the db_keys files are important... so this needs some "import" of ispcp libraries...

/J