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>
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>
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
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
or this: /opt/www/roundcubemail/config/defaults.inc.php
then search for 'product_name'