/webmail to /roundcube

PRB

Verified User
Joined
Oct 18, 2008
Messages
154
Hi all,

I want domain/webmail to redirect or point to domain/roundcube. How do I achieve this?

Thanks.
 
It's not exactly what I mean.

I haven't installed UebiMiau. So if i visit one of my domains blabla.com/webmail i get a "Not found". I want /webmail to go to /roundcube on all domains on my server. How do I achieve this since /webmail does not work anymore.
 
It appars to me to be exactly the solution you're looking for. If you follow it, webmail will redirect to roundcube.

Jeff
 
All you have to do is change the alias then in /etc/httpd/conf/extra/httpd-alias.conf and restart apache
 
I looked at the article mentioned above (http://directadmin.com/features.php?id=735), which says;
will be the default, but can be changed by adding webmail_link=other to the directadmin.conf file.

I find two directadmin.conf files;

/usr/local/directadmin/data/templates/directadmin.conf
/usr/local/directadmin/conf/directadmin.conf

Neither files have the variables listed in the article:

webmail_link=
hide_webmail_links=

et.al.
 
I looked at the article mentioned above (http://directadmin.com/features.php?id=735), which says;

I find two directadmin.conf files;

/usr/local/directadmin/data/templates/directadmin.conf
/usr/local/directadmin/conf/directadmin.conf

Neither files have the variables listed in the article:

webmail_link=
hide_webmail_links=

et.al.

Use /usr/local/directadmin/conf/directadmin.conf and add webmail_link and hide_webmail_links as new lines. Restart DirectAdmin afterwards.
 
Happy Holidays All!

SCSI's solution is the correct option (workaround) for what I wish to do.

All you have to do is change the alias then in /etc/httpd/conf/extra/httpd-alias.conf and restart apache

I have a question though. In /etc/httpd/conf/extra/httpd-alias.conf

Code:
Alias /config "/var/www/html/redirect.php"
Alias /phpMyAdmin "/var/www/html/phpMyAdmin/"
Alias /phpmyadmin "/var/www/html/phpMyAdmin/"
Alias /squirrelmail "/var/www/html/squirrelmail/"
Alias /roundcube "/var/www/html/roundcube/"
Alias /uebimiau "/var/www/html/uebimiau/"
[COLOR="Red"]Alias /webmail "/var/www/html/webmail/"[/COLOR]
Alias /atmail "/var/www/html/atmail/"

I changed the line:

Code:
Alias /webmail "/var/www/html/[COLOR="Red"]webmail[/COLOR]/"

to read:

Code:
Alias /webmail "/var/www/html/[COLOR="Red"]roundcube[/COLOR]/"

Since /webmail was an alias for /var/www/html/webmail/, which appears to be UebiMiau (default web mail application), this is a workaround and not a fix.

My question is; how/can/should I get rid of UebiMiau to allow for a different default /webmail?

Thanks.
 
Thanks SCSI. The solution works fine, but my question is:

Since /webmail was an alias for /var/www/html/webmail/, which appears to be UebiMiau (default web mail application), this is a workaround and not a fix.

My question is; how/can/should I get rid of UebiMiau to allow for a different default /webmail?
 
Delete /var/www/html/webmail

Then create a symbolic link from /var/www/html/roundcube to /var/www/html/webmail

rm -rf /var/www/html/webmail
ln -s /var/www/html/roundcube /var/www/html/webmail
 
Back
Top