ss88/enhance_password

为RoundCube用户启用更改增强控制面板邮箱密码的能力。

安装: 7

依赖项: 0

建议者: 0

安全: 0

星标: 5

关注者: 3

分支: 1

开放问题: 0

类型:roundcube-plugin

dev-main 2024-04-26 23:37 UTC

This package is auto-updated.

Last update: 2024-09-27 00:28:26 UTC


README

为RoundCube用户启用更改增强控制面板邮箱密码的能力

演示视觉

Demo SS

部署(集中安装的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';