ss88 / enhance_password
为RoundCube用户启用更改增强控制面板邮箱密码的能力。
dev-main
2024-04-26 23:37 UTC
Requires
- roundcube/plugin-installer: >=0.1.6
This package is auto-updated.
Last update: 2024-09-27 00:28:26 UTC
README
为RoundCube用户启用更改增强控制面板邮箱密码的能力
演示视觉
部署(集中安装的Roundcube)
下载此存储库的副本并将其内容上传到
/path/to/roundcube/plugins/enhance_password
编辑你的 /path/to/roundcube/config/config.inc.php
文件,并将 enhance_password
添加到 $config['plugins']
变量中。它应该看起来像以下这样
$config['plugins'] = array(
'enhance_login',
'enhance_password'
);
部署(客户域,例如 mail.customer.com)
注意:此部署的用户是 roundcubelocal
,因此你需要 su - roundcubelocal
以获取访问权限。
下载此存储库的副本并将其内容上传到
/path/to/roundcube/plugins/enhance_password
编辑你的 /path/to/roundcube/config/config.inc.php
文件,并将 enhance_password
添加到 $config['plugins']
变量中。它应该看起来像以下这样
$config['plugins'] = array(
'enhance_login',
'enhance_password'
);
编辑你的 /path/to/roundcube/config/config.inc.php
文件,并将 orchd_key
(API密钥)和 orchd_url
(控制面板API端点)添加到 $config
变量中。您可以在集中安装的Roundcube的 config.inc.php
文件中找到这些详细信息,或者您可以在控制面板中设置 -> 访问令牌生成一个新密钥。最终结果应该看起来像以下这样
$config['orchd_key'] = 'XXXXXXXXXXXXX';
$config['orchd_url'] = 'https://control-panel-url.com/api';