0

I'm trying to change the title of my webpages on my roundcube email server but I don't know how or where to alter the roundcube object pagetitle.

<title><roundcube:object name="pagetitle" /></title>
jh314
  • 27,144
  • 16
  • 62
  • 82

3 Answers3

2

You're looking for (roundcube root)/program/localization/(then the language you choose)/labels.inc

More specifically the pagetitle uses the $config['product_name'] on the config.inc.php in the config folder

Alaska Zach
  • 100
  • 3
  • 11
1

short simple answer : /etc/roundcube/config.inc.php

edit this attribute: original.. $rcmail_config['product_name'] = 'Roundcube Webmail';

change to.. $rcmail_config['product_name'] = $_SERVER['HTTP_HOST'];

Ref : https://vvcares.com/blog/2020/02/how-to-change-roundcube-webmail-title-login-details

0

or this: /opt/www/roundcubemail/config/defaults.inc.php

then search for 'product_name'

mrdeadi
  • 13
  • 3