Hello, I have followed the "Perfect server Ubuntu 10.04 ISPconfig3" and it is working perfect, thank you Falko. Now I wish to use Roundcube as webmail client instead of Squirrelmail. Are there any HowTo for this small action. I have looked in the forum but I cannot get the Roundcube to work at all therefor I need some help. To start - should I use the apt to install roundcube? I tried that. /Pelle
I believe that after you installed Roundcube you should only have to change the /var/www/webmail symbolic link from /usr/share/squirrelmail to /usr/share/roundcube. (Or the locations applicable to your setup.) I replaced the webmail symlink with a small menu page that lets the user select between SquirrelMail, RoundCube or Horde. Seems to work well.
Yes. Very simple, just links. mail_link_1 2 3 are symlinks that point to /usr/share/squirrelmail etc. Code: <?php echo ' <html> <head> <title>Webmail</title> </head> <body> <br /><div align="center"><p><h1>System 6 Hosting Webmail Portal</h1></p><br /><br /></div> <table width="100%" align="center"> <tr><td align="center"><p><a href="http://mail.system6hosting.com/mail_link_1"><img src="squirrelmail.gif" alt="Squirrelmail" style="border:none;" /></a></p><br><br></td></tr> <tr><td align="center"><p><a href="http://mail.system6hosting.com/mail_link_2"><img src="roundcube.png" alt="Roundcube" style="border:none;" /></a></p><br><br></td></tr> <tr><td align="center"><p><a href="http://mail.system6hosting.com/mail_link_3"><img src="horde.gif" alt="Horde" style="border:none;" /></a></p><br><br></td></tr> </table> </body> </html>'; ?>