Comments on Easy RoundCube (Over SSL) And Webmin With fail2ban For ISPConfig 3 On Debian Squeeze

Easy RoundCube (Over SSL) And Webmin With fail2ban For ISPConfig 3 On Debian Squeeze I prefer the RoundCube solution over the default in ISPConfig 3. I also find it useful to have the webmin installed in all my systems. In this post you can see a very fast way to have both of them installed, in companion with the great support of fail2ban. Finally I want to access all of them over SSL (even phpmyadmin -- see the tip in the end).

3 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Anonymous

[quote]apt-get install roundcube roundcube-mysql[/quote] Problem here is : Reading package lists... Done Building dependency tree Reading state information... Done Package roundcube is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package roundcube has no installation candidate I cant find any roundcube packafe with apt-get. So what shall i do ?1 o.O greetings

By: djkoelkast

I would install webmin like this:

aptitude install webmin

because this will install all dependencies as well as the latest version of webmin.

By: suther

You write that the config-file is 

/etc/apache2/conf.d/roundcube.conf 

On my squeeze it was on:

/etc/apache2/conf.d/roundcube  and this link to: /etc/roundcube/apache.conf

 /var/lib/roundcube/config/main.inc.php: the var is not named auto_create_user but $rcmail_config['auto_create_user'] and is still set to TRUE

But the End of the Game, I can't reach the webmail by enter mydomain.de/webmail/.

The Apache error-Log say: SoftException in Application.cpp:221: File "/usr/share/roundcube/index.php" is not in document root of Vhost "/var/www/ispconfig/"

This is of using suPHP module. To fix this, I have add this to /etc/apache2/conf.d/roundcube:

 <IfModule mod_php5.c>

AddType application/x-httpd-php .php

php_flag magic_quotes_gpc Off

php_flag track_vars On

php_admin_flag allow_url_fopen Off

php_value include_path .:/usr/share/php:/usr/share/pear

php_admin_value upload_tmp_dir /var/lib/roundcube/temp

php_admin_value open_basedir /usr/share/php:/usr/share/pear:/usr/lib/roundcube:/etc/roundcube:/usr/share/roundcube:/var/lib/roundcube:/var/log/roundcube

php_flag register_globals off

</IfModule>