1

Topic: Uninstall Roundcube

==== Required information ====
- iRedMail version (check /etc/iredmail-release): v0.9.4
- Linux/BSD distribution name and version: CentOS 6.7
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MYSQL
- Web server (Apache or Nginx):Apache
- Manage mail accounts with iRedAdmin-Pro? No
- Related log if you're reporting an issue: N/A
====

I was wondering if it was possible to just uninstall roundcube.  I've found sogo to be a more robust webmail client and would like to remove roundcube.  If anyone has done this before and can provide helpful tips and procedures it would be appreciated.

Thanks!

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Uninstall Roundcube

I just commented out the line

  # include /etc/nginx/templates/roundcube.tmpl;

in file:  /etc/nginx/conf.d/default.conf

followed by restarting nginx

This disables roundcube but does not actually uninstall it. In my case it was taking up very little file and database space so I'll keep it around for a rainy day wink

You can adapt the paths for an Apache installation.


What I haven't done yet is to then redirect /mail requests to /sogo

3

Re: Uninstall Roundcube

Disable Roundcube in Apache (/etc/httpd/conf.d/ssl.conf and roundcubemail.conf) or Nginx should be enough, since no one can access it, it should be fine.

If you want to completely remove it, you should remove Roundcube files and delete its SQL database (roundcubemail).
You can find Roundcube directory in this tutorial:
http://www.iredmail.org/docs/file.locations.html

4

Re: Uninstall Roundcube

This worked, thanks for the responses gents