【发布时间】:2015-04-23 00:38:28
【问题描述】:
我正在尝试更改我的 roundcube 电子邮件服务器上的网页标题,但我不知道如何或在何处更改 roundcube 对象页面标题。
<title><roundcube:object name="pagetitle" /></title>
【问题讨论】:
我正在尝试更改我的 roundcube 电子邮件服务器上的网页标题,但我不知道如何或在何处更改 roundcube 对象页面标题。
<title><roundcube:object name="pagetitle" /></title>
【问题讨论】:
您正在寻找(roundcube root)/program/localization/(然后是您选择的语言)/labels.inc
更具体地说,页面标题使用配置文件夹中 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
然后搜索“产品名称”
【讨论】: