Entries by Jeff Johnson

How to edit Roundcube defaults

You will find system-wide defaults in this file /usr/local/topicdesk/roundcube/WebApp/config/main.inc.php For example, to change the help link in Roundcube, change: $rcmail_config['support_url'] = "http://help.wherever.com/"; Its important to note User default settings established for a user when they first login. Once the user has logged in, they are in control of their settings (now stored in the database). […]

Why did the Roundcube installer fail?

The installation failed There’s a good chance your postgres database is damaged. Open the logs and if you see lines similar to below, you have a postgres database issue. database system was interrupted record with zero length invalid primary checkpoint record You will find the log here: /Library/Logs/PostgreSQL/PostgreSQL.log The Roundcube installer needs a healthy database. […]

How do I change the Roundcube logo to my own ?

Copy your new logo into this directory /usr/local/topicdesk/roundcube/WebApp/ Edit the Roundcube config file: /usr/local/topicdesk/roundcube/WebApp/config/main.inc.php Find this line $rcmail_config[‘skin_logo’] = ”; and change it to your the filename of your logo $rcmail_config[‘skin_logo’] = ‘mycompany-logo.png’;

How do I view logs for topicdesk-Roundcube

You’ll want to increase logging first, so edit: /usr/local/topicdesk/roundcube/WebApp/config/main.inc.php You will find several logging options, here a few options with default settings. Change them to suit your needs. $rcmail_config[‘debug_level’] = 1; $rcmail_config[‘log_logins’] = false; $rcmail_config[‘log_session’] = false; $rcmail_config[‘imap_debug’] = false; $rcmail_config[‘smtp_debug’] = false; Logs will be saved to: /usr/local/topicdesk/roundcube/WebApp/logs/

How do I modify the topicdesk-Roundcube configuration

To make changes to the Roundcube configuration, there are two files to be considered. This file contains Roundcube default settings. Use this as a reference, but don’t make changes to this file. /usr/local/topicdesk/roundcube/WebApp/config/defaults.inc.php To make a change, copy the line(s) from defaults.inc.php and add it to with your change to: /usr/local/topicdesk/roundcube/WebApp/config/config.inc.php The config.inc.php file should […]