Install and configure webmail on eBox
Run:
echo 'deb http://ftp.rediris.es/debian/ sarge main' >> /etc/apt/sources.list
apt-get update
apt-get install squirrelmail
ln -s /etc/squirrelmail/apache.conf /etc/apache2/conf.d/squirrelmail.conf
Edit the /etc/squirrelmail/apache.conf and change
#
# DocumentRoot /usr/share/squirrelmail
# ServerName webmail.mydomain.com
#
to:
DocumentRoot /usr/share/squirrelmail
ServerName webmail.mydomain.com
(note that the "webmail.mydomain.com" should be changed to your servername and domain).
Edit /etc/apache2/ports.conf and change:
Listen 80
to:
Listen 0.0.0.0:80
Restart Apache
/etc/init.d/apache2 restart
And we'r done!
To access the webmail just surf tp http://
//Freakz_