Author Topic: Is it possible to customise the home screen  (Read 2424 times)

Offline blueaquan

  • Newbie
  • *
  • Posts: 3
Is it possible to customise the home screen
« on: January 19, 2023, 10:23:17 AM »
Hi, I am new to roundcube, I have a testbed machine on which I am experimenting roundcubemail-1.5.3. OS is Ubuntu 22.10.  I have changed these three lines in my /config/config.inc.php file

$config['skin'] = 'larry';
$config['skin_logo'] = 'https://<location of the logo online >;
$config['product_name'] = 'Company Webmail';

All that works, but when I login, the opening home screen, i.e. when we click on "Inbox", there is a blank preview window on the right, with the roundcube icon which I would either like to have a blank page or the company logo. Is this possible...?  Changing the above three parameters does not seem to have any effect on this icon.  Could anyone help me with this please...?

Thanks for your time

BA

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Is it possible to customise the home screen
« Reply #1 on: January 19, 2023, 11:46:52 AM »
You can add the following to your <RC root>/config/config.inc.php file to set the watermark page:
Code: [Select]
// Location of the blank (watermark) frame page. By default it is the watermark.html
// file from the currently selected skin. Prepend name/path with a slash to use
// current skin folder. Remove the slash to point to a file in the Roundcube
// root directory. It can be also a full URL.
$config['blankpage_url'] = '/watermark.html';

Offline blueaquan

  • Newbie
  • *
  • Posts: 3
Re: Is it possible to customise the home screen
« Reply #2 on: January 19, 2023, 01:12:36 PM »
You can add the following to your <RC root>/config/config.inc.php file to set the watermark page:
Code: [Select]
// Location of the blank (watermark) frame page. By default it is the watermark.html
// file from the currently selected skin. Prepend name/path with a slash to use
// current skin folder. Remove the slash to point to a file in the Roundcube
// root directory. It can be also a full URL.
$config['blankpage_url'] = '/watermark.html';

Fantastic! Thank you SKaero, that worked like a breeze!