如何更改 Roundcube Objects?

How to change Roundcube Objects?

我正在尝试更改 roundcube 电子邮件服务器上的网页标题,但我不知道如何或在何处更改 roundcube object pagetitle。

<title><roundcube:object name="pagetitle" /></title>

你要找的是(roundcube root)/program/localization/(然后是你选择的语言)/labels.inc

更具体地说,pagetitle 使用配置文件夹 config.inc.php 上的 $config['product_name']

简短的回答:/etc/roundcube/config.inc.php

编辑此属性: 原来的.. $rcmail_config['product_name'] = 'Roundcube Webmail';

改为.. $rcmail_config['product_name'] = $_SERVER['HTTP_HOST'];

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

或者这个:/opt/www/roundcubemail/config/defaults.inc.php

然后搜索 'product_name'