How do I change webmail url as custom url ?
Silicon House is a complete solution provider for reseller hosting, dedicated servers and cloud servers. Our expertise is in implementing high availability, high performance and hybrid cloud / dedicated servers.Silicon House runs hundreds of servers serving 1000+ customers in more than 90+ countries.
Linux direct admin hosting panel have multiple settings to customize your webmail access. For example you can use http://domain.com/mail or something else instead of http://domain.com/roundcube.
You can follow the below steps as admin to make it work.
- Open /etc/httpd/conf/extra/httpd-alias.conf
- change line
Code:
Alias /roundcube “/var/www/html/roundcube/”
to
Code:
Alias /mail “/var/www/html/roundcube/”
or add one more line as above
- Restart apache
- You might need to protect the file from being overwritten (by custombuild script) with
chattr +i /etc/httpd/conf/extra/httpd-alias.conf
- Again Restart apache